Skip to content

Commit

Permalink
Bump actions/download-artifact to v4 and actions/setup-node to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
tillrohrmann committed Apr 25, 2024
1 parent 5811d62 commit c330917
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "18.x"
registry-url: 'https://registry.npmjs.org'

- name: Download binary build from in-progress workflow
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: restate.${{ matrix.build.target }}.tar.gz

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "18.x"
registry-url: 'https://registry.npmjs.org'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,22 @@ jobs:

steps:
- name: Download aarch64-apple-darwin binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: restate.aarch64-apple-darwin.tar.gz

- name: Download x86_64-apple-darwin binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: restate.x86_64-apple-darwin.tar.gz

- name: Download x86_64-unknown-linux-musl binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: restate.x86_64-unknown-linux-musl.tar.gz

- name: Download aarch64-unknown-linux-musl binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: restate.aarch64-unknown-linux-musl.tar.gz

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run protolint
uses: plexsystems/[email protected]
Expand Down

0 comments on commit c330917

Please sign in to comment.