diff options
author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2024-11-03 14:02:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-03 14:02:34 +0100 |
commit | 904b3fce3a1df7a57c8564e57e65ed582d61ba44 (patch) | |
tree | 5cde663b84eb263875de9fbf5ad1945b2e4f036e | |
parent | f5cb1ce4bab5c225bf8053229e86ab21b5f273e5 (diff) | |
parent | 44d25a64475ff861875fe97c4612356eb697f4bf (diff) |
Merge pull request #267 from suzuki-shunsuke/chore-update-upload-artifact-v4
ci: fix the failure of the release workflow by updating actions/upload-artifact to v4
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aeda2bc..6a944c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -53,7 +53,7 @@ jobs: run: echo "${{ env.ARTIFACT_VERSION }}" > artifacts/release-version - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: artifacts path: artifacts |