From 6b7ecfb1a7cb80c9ca6688dbb10b6d4e3f0968a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 21:54:18 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/ui-tests.yml | 6 +++--- .github/workflows/vulnerable-dep-check.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d3a01a..893b04f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,7 +56,7 @@ jobs: check-latest: true - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }} @@ -68,7 +68,7 @@ jobs: id: yarn-cache-dir-path run: 'echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT' - - uses: actions/cache@v5 + - uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} diff --git a/.github/workflows/ui-tests.yml b/.github/workflows/ui-tests.yml index b56d26d..b8bf8f2 100644 --- a/.github/workflows/ui-tests.yml +++ b/.github/workflows/ui-tests.yml @@ -54,7 +54,7 @@ jobs: run: echo "127.0.0.1 forms.test" | sudo tee -a /etc/hosts - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }} @@ -66,7 +66,7 @@ jobs: id: yarn-cache-dir-path run: 'echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT' - - uses: actions/cache@v5 + - uses: actions/cache@v6 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -75,7 +75,7 @@ jobs: ${{ runner.os }}-yarn- - name: Cache Playwright browsers - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/ms-playwright key: ${{ runner.os }}-playwright-${{ hashFiles('**/package.json') }} diff --git a/.github/workflows/vulnerable-dep-check.yml b/.github/workflows/vulnerable-dep-check.yml index 255d104..4c8c80f 100644 --- a/.github/workflows/vulnerable-dep-check.yml +++ b/.github/workflows/vulnerable-dep-check.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v6 - name: Cache pip - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py') }}