diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index 006de86..349c994 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -39,7 +39,7 @@ jobs: 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('**/composer.json') }} @@ -58,7 +58,7 @@ jobs: run: echo "week=$(date +%Y-W%U)" >> $GITHUB_OUTPUT - name: Cache act binary - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .cache/bin key: ${{ runner.os }}-${{ runner.arch }}-act-binary-${{ steps.week.outputs.week }} @@ -66,7 +66,7 @@ jobs: ${{ runner.os }}-${{ runner.arch }}-act-binary- - name: Cache act local caches - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | .cache/act/artifacts diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index cdfdf07..1eebd9a 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -32,7 +32,7 @@ jobs: 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 }} # Use composer.json for key, if composer.lock is not committed.