From c330917693cb47313c450ca9068b176c1cf8e1eb Mon Sep 17 00:00:00 2001 From: Till Rohrmann Date: Thu, 25 Apr 2024 11:34:07 +0200 Subject: [PATCH] Bump actions/download-artifact to v4 and actions/setup-node to v4 --- .github/workflows/npm.yml | 6 +++--- .github/workflows/release.yml | 8 ++++---- .../service-protocol/.github/workflows/lint.yaml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index f698c9456..12e8ec8c4 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -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 @@ -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' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ac09eb06..07b7aa958 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/crates/service-protocol/service-protocol/.github/workflows/lint.yaml b/crates/service-protocol/service-protocol/.github/workflows/lint.yaml index 8b2d8e5fc..4f006e3ac 100644 --- a/crates/service-protocol/service-protocol/.github/workflows/lint.yaml +++ b/crates/service-protocol/service-protocol/.github/workflows/lint.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run protolint uses: plexsystems/protolint-action@v0.7.0