diff --git a/.github/workflows/docker-app-rest-passthrough.yml b/.github/workflows/docker-app-rest-passthrough.yml index 344142fc2..37ccf47e6 100644 --- a/.github/workflows/docker-app-rest-passthrough.yml +++ b/.github/workflows/docker-app-rest-passthrough.yml @@ -57,7 +57,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-single-buildx-${{ github.sha }} @@ -177,7 +177,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v6 - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-single-buildx-${{ github.sha }} diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index f320585ca..c810fdb13 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -24,13 +24,13 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-test:e2e-${{ inputs.package }}-${{ github.sha }} - name: Build dist cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 9c5010faf..316f52e9e 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -21,13 +21,13 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-test:integration-${{ inputs.package }}-${{ github.sha }} - name: Build dist cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} diff --git a/.github/workflows/lib-check.yml b/.github/workflows/lib-check.yml index 89b61622e..2b07e8bd0 100644 --- a/.github/workflows/lib-check.yml +++ b/.github/workflows/lib-check.yml @@ -23,7 +23,7 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build:type-${{ github.sha }} @@ -42,7 +42,7 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} @@ -61,7 +61,7 @@ jobs: cache: yarn - run: yarn install --immutable - name: Build type cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build:type-${{ github.sha }} @@ -83,13 +83,13 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-unit-and-integration-test:test-type-${{ github.sha }} - name: Build type cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build:type-${{ github.sha }} diff --git a/.github/workflows/other-runtime-unit-test.yml b/.github/workflows/other-runtime-unit-test.yml index 4f22a1d14..0b5061ab0 100644 --- a/.github/workflows/other-runtime-unit-test.yml +++ b/.github/workflows/other-runtime-unit-test.yml @@ -24,13 +24,13 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-test:deno-unit-${{ inputs.package }}-${{ github.sha }} - name: Build dist cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} @@ -51,13 +51,13 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-test:bun-unit-${{ inputs.package }}-${{ github.sha }} - name: Build dist cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 63dcaeda3..79c07575a 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -38,7 +38,7 @@ jobs: - run: yarn install --immutable working-directory: ./website - name: Restore bundler cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: key: ${{ runner.os }}-docusaurus-bundler-${{ github.sha }} path: ./website/node_modules/.cache diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 1ed834dea..326708ea2 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -21,19 +21,19 @@ jobs: - run: yarn install --immutable - name: Turbo Cache id: turbo-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-test:unit-${{ inputs.package }}-${{ github.sha }} - name: Build dist cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build-${{ github.sha }} - name: Build type cache if: steps.turbo-cache.outputs.cache-hit != 'true' - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: .turbo key: ${{ runner.os }}-turbo-build:type-${{ github.sha }}