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

Update actions #3578

Merged
merged 1 commit into from
Jan 11, 2025
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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
destination_dir: coverage

- name: Archive Artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: coverage
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
bin/release/man.sh
bin/release/create_tarball.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-generic-linux-x64-artifacts
path: target/upload/*
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
bin/release/create_tarball.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-generic-linux-aarch64-artifacts
path: target/upload/*
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
bin/test/test_integ.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: test-generic-linux-package-docker-ubuntu-x64-artifacts
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
bin/test/test_integ.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: test-generic-linux-package-docker-debian-x64-artifacts
Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
bin/test/test_integ.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: test-generic-linux-package-docker-archlinux-x64-artifacts
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
bin/test/test_integ.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: test-generic-linux-package-docker-fedora-x64-artifacts
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
pwd
find . -name "*.log"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: test-docker-amd64-package-artifacts
Expand Down Expand Up @@ -432,7 +432,7 @@ jobs:
bin/test/test_prerequisites.sh
bin/test/test_integ.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-deb-x64-artifacts
path: target/upload/*
Expand Down Expand Up @@ -481,7 +481,7 @@ jobs:
bin/test/test_prerequisites.sh
bin/test/test_integ.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-macos-x64-artifacts
path: target/upload/*
Expand Down Expand Up @@ -530,7 +530,7 @@ jobs:
bin/test/test_prerequisites.sh
bin/test/test_integ.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-macos-aarch64-artifacts
path: target/upload/*
Expand Down Expand Up @@ -585,7 +585,7 @@ jobs:
.\bin\test\test_prerequisites.ps1
.\bin\test\test_integ.ps1
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-windows-x64-artifacts
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
fi

- name: Archive artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: release-changelog
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
find ./artifacts -name "*sha256" | xargs -I FILE sh -c 'echo "https://github.com/${{ github.repository_owner }}/${{ github.event.repository.name }}/releases/download/${{ needs.set-context.outputs.release_version }}/$(basename FILE),$(cat FILE)"' >> release-${{ needs.set-context.outputs.release_version }}.sha256.csv

- name: Archive sha256 artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: release-sha256-csv
path: release-${{ needs.set-context.outputs.release_version }}.sha256.csv
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
bin/release/release.sh
echo "PATH=${PWD}/target/release:$PATH" >> "${GITHUB_ENV}"
- name: Archive artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-bench-artifacts
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Integration Tests
run: bin/test/test_integ.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-ubuntu-latest-${{ matrix.rust }}-artifacts
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Integration Tests
run: bin/test/test_integ.sh
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-ubuntu-20.04-${{ matrix.rust }}-artifacts
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
bin/test/test.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-archlinux-x64-artifacts
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
pwd
find . -name "*.log"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-fedora-x64-artifacts
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
pwd
find . -name "*.log"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-alpine-x64-artifacts
Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
pwd
find . -name "*.log"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-macos-x64-${{ matrix.rust }}-artifacts
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
pwd
find . -name "*.log"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-macos-aarch64-${{ matrix.rust }}-artifacts
Expand Down Expand Up @@ -422,7 +422,7 @@ jobs:
.\bin\activate_python3_venv.ps1
.\bin\test\test.ps1
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-win64-${{ matrix.rust }}-artifacts
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:
bin/test/test_integ.sh
echo "::endgroup::"
- name: Archive production artifacts
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
if: ${{ always() }}
with:
name: tests-win64-wsl2-artifacts
Expand Down
Loading