From a538f7e510f5332b417260f6264b8029c25f3185 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:37:59 +0000 Subject: [PATCH] Bump the artifact group with 2 updates Bumps the artifact group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: artifact - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: artifact ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3a3acea..1febcfd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: env: OS_NAME: ${{ matrix.os }} - name: Archive artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ matrix.rust == 'stable' }} with: name: stableartifacts-${{ matrix.os }} @@ -84,11 +84,11 @@ jobs: CARGO_REGISTRY_TOKEN: ${{ secrets.PUBLISH_SECRET }} # After publishing, create a release - name: Download ubuntu artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: stableartifacts-ubuntu-20.04 - name: Download macos artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: stableartifacts-macos-latest - run: pip3 install -U tomlq @@ -123,10 +123,10 @@ jobs: run: cargo publish --dry-run # Test downloading the artifacts - name: Download ubuntu artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: stableartifacts-ubuntu-20.04 - name: Download macos artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: stableartifacts-macos-latest