From 1c8c03eed74b7bfe6c6f662774b86259cdb8173b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 16:56:35 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/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) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/domain-allowlist-monitor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/domain-allowlist-monitor.yml b/.github/workflows/domain-allowlist-monitor.yml index c6468ef5..53041511 100644 --- a/.github/workflows/domain-allowlist-monitor.yml +++ b/.github/workflows/domain-allowlist-monitor.yml @@ -33,7 +33,7 @@ jobs: run: pip install requests pyyaml - name: Restore domain state cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: trace/domains/.domain_state.json key: domain-state-${{ runner.os }} @@ -49,7 +49,7 @@ jobs: - name: Save updated state if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: trace/domains/.domain_state.json key: domain-state-${{ runner.os }}