From 0d7bc7b4f02f7e7863e183d68e6c23be62904359 Mon Sep 17 00:00:00 2001 From: "dreadnode-renovate-bot[bot]" <184170622+dreadnode-renovate-bot[bot]@users.noreply.github.com> Date: Wed, 15 Jul 2026 00:24:30 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 | datasource | package | from | to | | ----------- | ------------- | ------ | ------ | | github-tags | actions/cache | v5.1.0 | v6.1.0 | --- .../workflows/build-and-push-templates.yaml | 18 +++++++++--------- .github/workflows/molecule.yaml | 4 ++-- .github/workflows/pre-commit.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/rust.yaml | 6 +++--- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build-and-push-templates.yaml b/.github/workflows/build-and-push-templates.yaml index fae1208f..077cad87 100644 --- a/.github/workflows/build-and-push-templates.yaml +++ b/.github/workflows/build-and-push-templates.yaml @@ -78,7 +78,7 @@ jobs: echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -543,7 +543,7 @@ jobs: docker system prune -af || true - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -757,7 +757,7 @@ jobs: echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1034,7 +1034,7 @@ jobs: docker system prune -af || true - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1252,7 +1252,7 @@ jobs: echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1502,7 +1502,7 @@ jobs: docker system prune -af || true - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1638,7 +1638,7 @@ jobs: echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1837,7 +1837,7 @@ jobs: docker system prune -af || true - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate @@ -1977,7 +1977,7 @@ jobs: echo "$HOME/.local/bin" >> "$GITHUB_PATH" - name: Cache Warpgate binary - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 id: warpgate-cache with: path: ~/.local/bin/warpgate diff --git a/.github/workflows/molecule.yaml b/.github/workflows/molecule.yaml index c7cb9c75..47f4c2b5 100644 --- a/.github/workflows/molecule.yaml +++ b/.github/workflows/molecule.yaml @@ -282,7 +282,7 @@ jobs: cache-dependency-path: '${{ env.COLLECTION_PATH }}/${{ env.REQUIREMENTS_FILE }}' - name: Cache Ansible collections - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.ansible/collections key: ${{ runner.os }}-ansible-${{ github.ref }}-${{ hashFiles('**/requirements.yml') }} @@ -391,7 +391,7 @@ jobs: cache-dependency-path: '${{ env.COLLECTION_PATH }}/${{ env.REQUIREMENTS_FILE }}' - name: Cache Ansible collections - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.ansible/collections key: ${{ runner.os }}-ansible-${{ github.ref }}-${{ hashFiles('**/requirements.yml') }} diff --git a/.github/workflows/pre-commit.yaml b/.github/workflows/pre-commit.yaml index 8ce5f25e..23a3c841 100644 --- a/.github/workflows/pre-commit.yaml +++ b/.github/workflows/pre-commit.yaml @@ -78,7 +78,7 @@ jobs: go install mvdan.cc/sh/v3/cmd/shfmt@latest - name: Cache Ansible collections - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.ansible/collections key: ${{ runner.os }}-ansible-collections-${{ hashFiles('ansible/requirements.yml') }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1952c606..1e255244 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -55,7 +55,7 @@ jobs: EOF - name: Cache cargo registry and build - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.cargo/registry diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 55151347..64fb6a14 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -51,7 +51,7 @@ jobs: uses: dtolnay/rust-toolchain@4be7066ada62dd38de10e7b70166bc74ed198c30 # stable - name: Cache cargo registry and build - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.cargo/registry @@ -84,7 +84,7 @@ jobs: tool: cargo-llvm-cov - name: Cache cargo registry and build - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.cargo/registry @@ -144,7 +144,7 @@ jobs: components: clippy - name: Cache cargo registry and build - uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0 + uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: | ~/.cargo/registry