Skip to content

Commit

Permalink
fix: update deprecated actions/upload-artifact@v3 to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
banditopazzo committed Jan 9, 2025
1 parent c9afb70 commit f5d5fef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
echo "archive_file_name=$(realpath ./pulsar-vendored-${{ env.REGISTRY_TAG }}.tar.xz)" >> $GITHUB_OUTPUT
- name: Upload archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binaries-${{ env.REGISTRY_TAG }}
path: ${{ steps.create-archive.outputs.archive_file_name }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
outputs: type=docker,dest=/tmp/images/${{ env.TARFILE }}

- name: Upload Docker image
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ matrix.platform.docker != null }}
with:
name: images-${{ env.REGISTRY_TAG }}
Expand All @@ -140,7 +140,7 @@ jobs:
echo "binary_name=${binary_name}" >> $GITHUB_OUTPUT
- name: Upload binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binaries-${{ env.REGISTRY_TAG }}
path: ${{ steps.rename_binary.outputs.binary_name }}
Expand Down

0 comments on commit f5d5fef

Please sign in to comment.