Skip to content

Commit f635db7

Browse files
committed
Update GitHub Actions workflow to use latest versions of checkout, upload-artifact, and download-artifact actions for improved performance and security.
1 parent 7d917ba commit f635db7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ubuntu-2004.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
- name: Build
1919
run: |
2020
set -e
@@ -46,12 +46,12 @@ jobs:
4646
built-contracts
4747
ls -l built-contracts
4848
- name: Upload build
49-
uses: actions/upload-artifact@v1
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: ubuntu-2004-build
5252
path: build.tar.gz
5353
- name: Upload built contracts
54-
uses: actions/upload-artifact@v1
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: built-contracts
5757
path: built-contracts
@@ -61,12 +61,12 @@ jobs:
6161
needs: ubuntu-2004-build
6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v2
64+
uses: actions/checkout@v4
6565
with:
6666
submodules: recursive
6767
fetch-depth: 0
6868
- name: Download build
69-
uses: actions/download-artifact@v1
69+
uses: actions/download-artifact@v4
7070
with:
7171
name: ubuntu-2004-build
7272
- name: Parallel Test

0 commit comments

Comments
 (0)