diff --git a/.github/workflows/ci-db-tests.yml b/.github/workflows/ci-db-tests.yml index 5ec1acfa3..8675d1bfa 100644 --- a/.github/workflows/ci-db-tests.yml +++ b/.github/workflows/ci-db-tests.yml @@ -35,7 +35,7 @@ jobs: - name: Run tests run: composer test:db:${{ inputs.platform }} - name: Upload code coverage - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v7 if: ${{ matrix.php-version == '8.4' && inputs.platform == 'sqlite:ci' }} with: name: coverage-db diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 5f9f2bdc6..1a45651b1 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -32,7 +32,7 @@ jobs: if: ${{ inputs.test-group == 'api' }} run: ./vendor/bin/rr get --no-interaction --no-config --location bin/ && chmod +x bin/rr - run: composer test:${{ inputs.test-group }}:ci - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v7 if: ${{ matrix.php-version == '8.4' }} with: name: coverage-${{ inputs.test-group }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acd251004..4d8d909ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -77,7 +77,7 @@ jobs: with: php-version: ${{ matrix.php-version }} extensions-cache-key: tests-extensions-${{ matrix.php-version }} - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v8 with: path: build - run: mv build/coverage-unit/coverage-unit.cov build/coverage-unit.cov @@ -95,7 +95,7 @@ jobs: - upload-coverage runs-on: ubuntu-24.04 steps: - - uses: geekyeggo/delete-artifact@v5 + - uses: geekyeggo/delete-artifact@v6 with: name: | coverage-* diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 970bfb369..031f40b53 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -19,7 +19,7 @@ jobs: extensions-cache-key: publish-swagger-spec-extensions-${{ matrix.php-version }} install-deps: 'no' - run: ./build.sh ${GITHUB_REF#refs/tags/v} - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v7 with: name: dist-files-${{ matrix.php-version }} path: build @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v5 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v8 with: path: build - name: Publish release with assets @@ -45,6 +45,6 @@ jobs: needs: ['publish'] runs-on: ubuntu-24.04 steps: - - uses: geekyeggo/delete-artifact@v5 + - uses: geekyeggo/delete-artifact@v6 with: name: dist-files-*