Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
zip relay-Linux-x86_64-debug.zip relay.debug
mv relay relay-Linux-x86_64

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-linux
path: target/release/relay-Linux-x86_64*
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
zip relay-Linux-aarch64-debug.zip relay.debug
mv relay relay-Linux-aarch64

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-linux-aarch64
path: target/release/relay-Linux-aarch64*
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
mv relay relay-Darwin-x86_64
zip -r relay-Darwin-x86_64-dsym.zip relay.dSYM

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-macos
path: target/release/relay-Darwin-x86_64*
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
7z a relay-Windows-x86_64-pdb.zip relay.pdb
mv relay.exe relay-Windows-x86_64.exe

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-windows
path: target/release/relay-Windows-x86_64*
Expand All @@ -167,7 +167,7 @@ jobs:
# there cannot be mutliple upload-artifacts with the same name, in a sha's workflow runs.
# However in this case it is fine because this only runs on release/** branches,
# and the other runs on release-library/** branches.
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v5
with:
# Craft expects release assets to be a single artifact named after the sha.
name: ${{ github.sha }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
TARGET: ${{ matrix.build-arch }}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-linux-${{ matrix.build-arch }}
path: py/dist/*
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
# consumed by cargo and setup.py to obtain the target dir
CARGO_BUILD_TARGET: ${{ matrix.target }}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-macos-${{ matrix.py-platform }}
path: py/dist/*
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
run: python setup.py sdist
working-directory: py

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifact-sdist
path: py/dist/*
Expand All @@ -139,7 +139,7 @@ jobs:
# there cannot be mutliple upload-artifacts with the same name, in a sha's workflow runs.
# However in this case it is fine because this only runs on release-library/** branches,
# and the other runs on release/** branches.
- uses: actions/upload-artifact/merge@v4
- uses: actions/upload-artifact/merge@v5
with:
# Craft expects release assets to be a single artifact named after the sha.
name: ${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ jobs:
cp "${RELAY_BIN}"{,-debug.zip,.src.zip} "artifacts/${DOCKER_PLATFORM}"

- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
retention-days: 1
name: ${{ matrix.image_name }}@${{ matrix.target }}
Expand Down Expand Up @@ -470,7 +470,7 @@ jobs:
done

- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
retention-days: 1
name: internal-${{ matrix.image_name }}@${{ matrix.target }}
Expand Down Expand Up @@ -534,7 +534,7 @@ jobs:

- name: Upload docker image
if: "github.event.pull_request.head.repo.fork || github.actor == 'dependabot[bot]'"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
retention-days: 1
name: ${{ matrix.image_name }}-docker-image
Expand Down
Loading