diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fe0fcdc9..bad919f93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -224,7 +224,7 @@ jobs: # Lint API - name: PHP CS Fixer Cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: api/.php-cs-fixer.cache key: ${{ runner.OS }}-phpcsfixer-${{ github.sha }} @@ -259,7 +259,7 @@ jobs: version: latest - name: Cache PNPM - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.PNPM_HOME }} key: ${{ runner.os }}-pnpm-${{ github.run_id }} @@ -277,7 +277,7 @@ jobs: # Lint HELM - name: Cache Helm Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: helm/api-platform/charts/ key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3b0216528..ec060828e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -79,7 +79,7 @@ jobs: gcloud container clusters get-credentials ${{ inputs.gke-cluster }} --zone ${{ inputs.gke-zone }} - name: Cache Helm Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: helm/api-platform/charts/ key: ${{ runner.os }}-helm-dependencies-${{ github.run_id }} diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 55c99e8bd..36ed647a9 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -62,7 +62,7 @@ jobs: run: docker pull europe-west1-docker.pkg.dev/${{ secrets.GKE_PROJECT }}/${{ secrets.GKE_PROJECT }}/${{ matrix.image }}:latest - name: Cache Trivy - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .trivy key: ${{ runner.os }}-trivy-${{ github.run_id }} diff --git a/.github/workflows/upgrade-api-platform.yml b/.github/workflows/upgrade-api-platform.yml index b45ad2238..fb5e93ce1 100644 --- a/.github/workflows/upgrade-api-platform.yml +++ b/.github/workflows/upgrade-api-platform.yml @@ -36,7 +36,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}