diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53a283e4..11235fd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('legacy/composer.lock') }} @@ -117,7 +117,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('legacy/composer.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index afcf30b5..33d90d8e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: run: echo "dir=$(cd legacy && composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('legacy/composer.lock') }} @@ -81,7 +81,7 @@ jobs: echo "repogen=$(grep '^REPOGEN_VERSION' Makefile | cut -d= -f2 | tr -d ' ')" >> $GITHUB_OUTPUT - name: Cache PHP binaries - uses: actions/cache@v5 + uses: actions/cache@v6 id: php-cache with: path: internal/legacy/archives/php_* @@ -103,7 +103,7 @@ jobs: chmod 600 "$KEY_DIR/gpg-signing-key.asc" - name: Cache Go binaries - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/go/bin key: ${{ runner.os }}-go-bin-goreleaser-${{ steps.tool-versions.outputs.goreleaser }}-repogen-${{ steps.tool-versions.outputs.repogen }}