From f3bc6b7aeb5ef52dc87512116b429d732c27befb Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 29 May 2024 12:19:32 -0400 Subject: [PATCH] Use actions/upload-artifact@v4 --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 444a6f8dc..a01da0d09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -152,7 +152,7 @@ jobs: done - name: Save build artifacts to build-${{ matrix.target }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: cross-build path: target_releases/* @@ -287,7 +287,7 @@ jobs: mv target/${{ matrix.target }}/release/martin-cp${{ matrix.ext }} target_releases/ mv target/${{ matrix.target }}/release/mbtiles${{ matrix.ext }} target_releases/ - name: Save build artifacts to build-${{ matrix.target }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.target }} path: target_releases/* @@ -383,7 +383,7 @@ jobs: DATABASE_URL: ${{ steps.pg.outputs.connection-uri }} - name: Save test output (on error) if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: failed-test-output-${{ runner.os }} path: | @@ -517,7 +517,7 @@ jobs: DATABASE_URL: postgres://${{ env.PGUSER }}:${{ env.PGUSER }}@${{ env.PGHOST }}:${{ job.services.postgres.ports[5432] }}/${{ env.PGDATABASE }}?sslmode=${{ matrix.sslmode }} - name: Save test output (on error) if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-output path: | @@ -631,7 +631,7 @@ jobs: EOF - name: Save Homebrew Config - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: homebrew-config path: target/homebrew_config.yaml