From c7268295f93764883eba712fafdc35cee6c3638a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 21:27:27 +0000 Subject: [PATCH] chore(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 4 ++-- .github/workflows/checks.yaml | 2 +- .github/workflows/coverage.yaml | 2 +- .github/workflows/tests.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5083674..c13c3e1 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -58,7 +58,7 @@ jobs: working-directory: pacman - name: Cache vcpkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | target/vcpkg @@ -94,7 +94,7 @@ jobs: working-directory: pacman - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: "pacman-${{ steps.get_version.outputs.version }}-${{ matrix.target }}" path: ./target/release/${{ matrix.artifact_name }} diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index e25cc78..3960502 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -31,7 +31,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Cache vcpkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/vcpkg key: A-vcpkg-${{ runner.os }}-${{ hashFiles('Cargo.toml', 'Cargo.lock') }} diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 666ed63..e881608 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -29,7 +29,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Cache vcpkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/vcpkg key: A-vcpkg-${{ runner.os }}-${{ hashFiles('Cargo.toml', 'Cargo.lock') }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 8cd85fa..650c0db 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -30,7 +30,7 @@ jobs: uses: Swatinem/rust-cache@v2 - name: Cache vcpkg - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: target/vcpkg key: A-vcpkg-${{ runner.os }}-${{ hashFiles('Cargo.toml', 'Cargo.lock') }}