Skip to content

Commit

Permalink
Update various workflow action versions for node 20 compatibility
Browse files Browse the repository at this point in the history
Updating:

* actions/upload-artifact@v3 ->  4
* @actions/checkout@3 ->4
* actions/download-artifact@v3 -> 4
  • Loading branch information
dibenede committed Jul 15, 2024
1 parent dae06f2 commit 4cd555a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- run: npm run build

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: js
path: |
Expand Down Expand Up @@ -85,9 +85,9 @@ jobs:
# cpu: darwin_x86_64

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

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
if: ${{ !env.ACT }}
with:
name: js
Expand All @@ -106,7 +106,7 @@ jobs:
# need to copy to output directory as `bazel-bin` is a symlink and cannot be read by the actions/upload-artifact action
- run: cp bazel-bin/protobuf-javascript-* out/

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: releases
path: out
Expand All @@ -120,7 +120,7 @@ jobs:
contents: write

steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: releases

Expand Down

0 comments on commit 4cd555a

Please sign in to comment.