diff --git a/.github/workflows/windows-release-build.yml b/.github/workflows/windows-release-build.yml index a9b7d75d0..423e91499 100644 --- a/.github/workflows/windows-release-build.yml +++ b/.github/workflows/windows-release-build.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - name: Download DLL and PDB files - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v3 with: workflow: windows-tests.yml workflow_conclusion: success diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index aa736b2a4..e8a7cd422 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -49,7 +49,7 @@ jobs: - name: Cache build artifacts for subsequent builds id: cache-build-artifacts - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 with: key: ${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }} path: | @@ -67,7 +67,7 @@ jobs: - name: Upload DLL and PDB files as build artifacts if: ${{ github.event_name == 'push' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: php_mongodb-${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }} path: | @@ -108,7 +108,7 @@ jobs: - name: Restore cached build artifacts id: cache-build-artifacts - uses: actions/cache/restore@v3 + uses: actions/cache/restore@v4 with: fail-on-cache-miss: true key: ${{ github.sha }}-${{ matrix.php }}-${{ matrix.ts }}-${{ matrix.arch }}