From af3e14fbac9c4b5d6a038e97a570dbe3e411613e Mon Sep 17 00:00:00 2001 From: Daniel Griesser Date: Tue, 11 Aug 2026 09:47:25 +0200 Subject: [PATCH] fix(ci): update release workflow actions Upgrade the release workflow's first-party GitHub Actions to supported major versions. In particular, artifact upload and download now use v4, avoiding the setup-time failure caused by the retired v3 artifact service. --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb9aefc..649f755 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Cache node modules id: cache-npm - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-node-modules with: @@ -41,7 +41,7 @@ jobs: run: npm run bind-version - name: Archive Production Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build path: build @@ -51,10 +51,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: build path: build