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') }}