Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "ci: Update upload-artifact and download-artifact actions" #2866

Merged
merged 1 commit into from
Dec 19, 2023
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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@v3
with:
name: ${{ github.sha }}
path: target/x86_64-unknown-linux-gnu/release/relay-Linux-x86_64*
Expand Down Expand Up @@ -61,7 +61,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@v3
with:
name: ${{ github.sha }}
path: target/release/relay-Darwin-x86_64*
Expand All @@ -88,7 +88,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@v3
with:
name: ${{ github.sha }}
path: target/release/relay-Windows-x86_64*
6 changes: 3 additions & 3 deletions .github/workflows/build_library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
env:
TARGET: ${{ matrix.build-arch }}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
path: py/dist/*
Expand Down Expand Up @@ -80,7 +80,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@v3
with:
name: ${{ github.sha }}
path: py/dist/*
Expand All @@ -102,7 +102,7 @@ jobs:
run: python setup.py sdist --format=zip
working-directory: py

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: ${{ github.sha }}
path: py/dist/*
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
run: docker save -o ${{ matrix.image_name }}-docker-image.tgz $IMG_VERSIONED

- name: Upload Docker Image to Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
retention-days: 1
name: ${{ matrix.image_name }}-docker-image
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:

steps:
- name: Download Docker Image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: ${{ matrix.image_name }}-docker-image

Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
symbolicator: true

- name: Download Docker Image
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: relay-docker-image

Expand Down
Loading