Skip to content

Commit

Permalink
Merge pull request #22 from SimonGrimmACS/master
Browse files Browse the repository at this point in the history
update github actions version
  • Loading branch information
m-mirz authored Mar 21, 2024
2 parents ad5532a + 8f55c62 commit bd5ddde
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_16v29a
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -29,7 +29,7 @@ jobs:
cd ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}
cmake ../.. -DUSE_CIM_VERSION=${{env.USE_CIM_VERSION}}
make doc
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: doc_${{env.USE_CIM_VERSION}}
path: ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}/doc/html
Expand All @@ -42,7 +42,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_17v07
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -61,7 +61,7 @@ jobs:
cd ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}
cmake ../.. -DUSE_CIM_VERSION=${{env.USE_CIM_VERSION}}
make doc
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: doc_${{env.USE_CIM_VERSION}}
path: ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}/doc/html
Expand All @@ -71,7 +71,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_16v29a_IEC61968_12v08
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -90,7 +90,7 @@ jobs:
cd ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}
cmake ../.. -DUSE_CIM_VERSION=${{env.USE_CIM_VERSION}}
make doc
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: doc_${{env.USE_CIM_VERSION}}
path: ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}/doc/html
Expand All @@ -101,7 +101,7 @@ jobs:
env:
USE_CIM_VERSION: CGMES_2.4.15_27JAN2020
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -120,7 +120,7 @@ jobs:
cd ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}
cmake ../.. -DUSE_CIM_VERSION=${{env.USE_CIM_VERSION}}
make doc
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: doc_${{env.USE_CIM_VERSION}}
path: ${{runner.workspace}}/libcimpp/build/${{env.USE_CIM_VERSION}}/doc/html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
USE_CIM_VERSION3: IEC61970_17v07
USE_CIM_VERSION4: CGMES_2.4.15_27JAN2020
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-src.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_16v29a
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -38,7 +38,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_17v07
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -63,7 +63,7 @@ jobs:
env:
USE_CIM_VERSION: IEC61970_16v29a_IEC61968_12v08
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand All @@ -90,7 +90,7 @@ jobs:
env:
USE_CIM_VERSION: CGMES_2.4.15_27JAN2020
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Install Doxygen
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
name: A job to build the packages
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build
id: build-it-now
uses: ./package/
- name: UploadRPM
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: rpm
path: ${{ github.workspace }}/build/*.rpm
- name: UploadDEB
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: deb
path: ${{ github.workspace }}/build/*.deb
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: GetArtifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
- name: Release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit bd5ddde

Please sign in to comment.