diff --git a/.github/workflows/docker-push-to-registries.yml b/.github/workflows/docker-push-to-registries.yml index 5caac8b..e393ec9 100644 --- a/.github/workflows/docker-push-to-registries.yml +++ b/.github/workflows/docker-push-to-registries.yml @@ -185,7 +185,7 @@ jobs: uses: docker/setup-buildx-action@v4.1.0 - name: Enable buildkit cache - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: buildkit-cache if: ${{ inputs.ENABLE_BUILDKIT_CACHE }} with: diff --git a/.github/workflows/javascript-test-feature-branch.yml b/.github/workflows/javascript-test-feature-branch.yml index e167f3b..4f574e7 100644 --- a/.github/workflows/javascript-test-feature-branch.yml +++ b/.github/workflows/javascript-test-feature-branch.yml @@ -39,7 +39,7 @@ jobs: id: yarn-cache-dir-path run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache node modules - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }} diff --git a/.github/workflows/jira-sync.yml b/.github/workflows/jira-sync.yml index c88fdbe..6342a10 100644 --- a/.github/workflows/jira-sync.yml +++ b/.github/workflows/jira-sync.yml @@ -77,7 +77,7 @@ jobs: - name: Restore Cached Cross Links id: cache-cross-links - uses: actions/cache/restore@v5.0.5 + uses: actions/cache/restore@v6.1.0 with: path: ${{ inputs.cross-links-file }} key: jira-sync-cross-links-${{ hashFiles(inputs.cross-links-file) }} @@ -116,7 +116,7 @@ jobs: # This step is needed so that if the cross links file gets updated we # generate a new cache from it - name: Update Cached Cross Links - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ${{ inputs.cross-links-file }} key: jira-sync-cross-links-${{ hashFiles(inputs.cross-links-file) }} diff --git a/.github/workflows/python-push-to-registries.yml b/.github/workflows/python-push-to-registries.yml index 61c4b9d..f8bac4b 100644 --- a/.github/workflows/python-push-to-registries.yml +++ b/.github/workflows/python-push-to-registries.yml @@ -111,7 +111,7 @@ jobs: uses: docker/setup-buildx-action@v4.1.0 - name: Enable buildkit cache - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: /tmp/buildkit-cache/buildkit-state.tar key: ${{ runner.os }}-buildkit-${{ github.sha }} diff --git a/.github/workflows/vulnerability-scanning-on-repo.yml b/.github/workflows/vulnerability-scanning-on-repo.yml index 58df41a..d56e720 100644 --- a/.github/workflows/vulnerability-scanning-on-repo.yml +++ b/.github/workflows/vulnerability-scanning-on-repo.yml @@ -50,7 +50,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache node modules - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}-${{ steps.node.outputs.version }}