diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0583f688..dbc73a4d 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -23,7 +23,7 @@ jobs: python-version: '3.13' - name: Cache pip repository - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements_test.txt') }} @@ -74,7 +74,7 @@ jobs: run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dfa34798..b09b65a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: run: mkdocs build - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 85c91f15..f0b8dc12 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -33,7 +33,7 @@ jobs: run: pytest -v --cov --cov-report=xml:coverage.xml - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}