Skip to content

Commit

Permalink
update github actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wysiwyng committed Feb 8, 2024
1 parent 739573d commit 11cfcc1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: ${{ matrix.config.name }}_build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Requirements (Linux)
if: matrix.config.name == 'Linux'
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: tar -C ${{runner.workspace}} -cvf ${{runner.workspace}}/etiss.tar install

- name: Upload Compiled System
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: etiss-${{matrix.config.name}}.tar
path: ${{runner.workspace}}/etiss.tar
Expand All @@ -136,7 +136,7 @@ jobs:

steps:
- name: Fetch Compiled System
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: etiss-${{matrix.config.name}}.tar
path: ${{runner.workspace}}
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

steps:
- name: Fetch Compiled System
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: etiss-Linux.tar
path: ${{runner.workspace}}
Expand All @@ -230,7 +230,7 @@ jobs:
mv ${{runner.workspace}}/results/run.json ${{runner.workspace}}/results/run_${{matrix.jit-engine}}_${{matrix.run-no}}.json
- name: Save Benchmark Results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: run_${{matrix.jit-engine}}_${{matrix.run-no}}.json
path: ${{runner.workspace}}/results/run_${{matrix.jit-engine}}_${{matrix.run-no}}.json
Expand All @@ -240,10 +240,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Fetch results
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts

Expand All @@ -258,7 +258,7 @@ jobs:
run: pip install -r script/requirements.txt

- name: get old benchmark results
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: benchmark_results
path: benchmark_results_old
Expand Down Expand Up @@ -287,27 +287,27 @@ jobs:
enable_jekyll: true

- name: uploading benchmark_results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: stats_file.json

path: benchmark_results_old/stats_file.json

- name: uploading image
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: performance_metrics.svg
path: results_/performance_metrics.svg

- name: Upload comment text
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: issue.md

path: results_/issue.md

- name: Upload wiki text
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wiki.md
path: results_/wiki.md
Expand All @@ -319,7 +319,7 @@ jobs:
#
# steps:
# - name: Get comment text
# uses: actions/download-artifact@v2
# uses: actions/download-artifact@v4
# with:
# name: issue.md
#
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:

steps:
- name: Get comment text
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: issue.md

Expand Down Expand Up @@ -407,12 +407,12 @@ jobs:

steps:
- name: Get comment text
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: wiki.md

- name: Get performance_metrics.svg
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: performance_metrics.svg

Expand All @@ -438,7 +438,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Delete Artifact
uses: geekyeggo/delete-artifact@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Requirements
run: |
Expand Down Expand Up @@ -51,13 +51,13 @@ jobs:
run: cmake --build . --config $BUILD_TYPE --target doc

- name: Setup Pages
uses: actions/configure-pages@v1
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ${{runner.workspace}}/build/doc/html

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 11cfcc1

Please sign in to comment.