diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 7da0ac1f228..e30a7c3f447 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -33,7 +33,7 @@ jobs: run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Restore uv cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} @@ -42,7 +42,7 @@ jobs: uv-${{ runner.os }} - name: Restore Jira Status Cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: # If the path is changed in the validator or jira.yaml.template, it should be changed here too path: jira_status_cache.json diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index 978c351fc16..d84cbbe4fb0 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -34,7 +34,7 @@ jobs: run: curl -LsSf https://astral.sh/uv/install.sh | sh - name: Restore uv cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/.uv-cache key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} @@ -64,7 +64,7 @@ jobs: - name: Save Jira Status Cache if: always() - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: # If the path is changed in the validator or jira.yaml.template, it should be changed here too path: jira_status_cache.json