Skip to content

Commit

Permalink
Updating workflow actions for deprecation of node16 on Github runner … (
Browse files Browse the repository at this point in the history
#3734)

This is a simple update pertaining to actions used in workflows. 

These actions older versions used node16 which is now EOL Needing to
update to actions that use node20

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
F-WRunTime and devops authored Feb 28, 2024
1 parent 62a3e13 commit 5a2665d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kevm-performance-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
nix run github:runtimeverification/evm-semantics#compare-profiles -- KEVM-timing-$TIMESTAMP-${PR_HEAD}.data KEVM-timing-$TIMESTAMP-master.data | tee KEVM-timing-comparison.data
- name: Publish Results
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4
with:
path: ./KEVM-timing*.data

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/profiling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: |
echo "PR_HEAD=$(curl -s ${{ github.event.issue.pull_request.url }} | jq '.head.sha' | xargs echo)" | tee -a $GITHUB_OUTPUT
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: '${{ steps.determine-commit.outputs.PR_HEAD }}'
- name: Run Tests
Expand All @@ -73,7 +73,7 @@ jobs:
nix run .#profile ./${FILE_NAME}
- name: Publish Profile Results
uses: actions/upload-artifact@v3.1.0
uses: actions/upload-artifact@v4
with:
path: ./profile-*.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
stack-haddock-2-${{ runner.os }}-ghc-${{ env.ghc_version }}-${{ hashFiles('stack.yaml') }}
stack-haddock-2-${{ runner.os }}-ghc-${{ env.ghc_version }}
- uses: haskell-actions/setup@v2
- uses: haskell-actions/setup@v2.6.1
id: setup-haskell-stack
with:
ghc-version: ${{ env.ghc_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
stack-2-${{ runner.os }}-ghc-${{ env.ghc_version }}-${{ hashFiles('stack.yaml') }}
stack-2-${{ runner.os }}-ghc-${{ env.ghc_version }}
- uses: haskell-actions/setup@v2
- uses: haskell-actions/setup@v2.6.1
id: setup-haskell-stack
with:
ghc-version: ${{ env.ghc_version }}
Expand Down

0 comments on commit 5a2665d

Please sign in to comment.