build(deps): bump actions/upload-artifact from 2.3.1 to 3 (#2187)

This commit is contained in:
dependabot[bot]
2022-03-08 01:46:30 +01:00
committed by GitHub
parent efcc93ad89
commit 8aef09574c
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -115,7 +115,7 @@ jobs:
- name: Build static executable - name: Build static executable
run: nix-build -A postgrestStatic run: nix-build -A postgrestStatic
- name: Save built executable as artifact - name: Save built executable as artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: postgrest-linux-static-x64 name: postgrest-linux-static-x64
path: result/bin/postgrest path: result/bin/postgrest
@@ -124,7 +124,7 @@ jobs:
- name: Build Docker image - name: Build Docker image
run: nix-build -A docker.image --out-link postgrest-docker.tar.gz run: nix-build -A docker.image --out-link postgrest-docker.tar.gz
- name: Save built Docker image as artifact - name: Save built Docker image as artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: postgrest-docker-x64 name: postgrest-docker-x64
path: postgrest-docker.tar.gz path: postgrest-docker.tar.gz
@@ -196,7 +196,7 @@ jobs:
echo "Using PostgreSQL binaries at $postgresql_bin ..." echo "Using PostgreSQL binaries at $postgresql_bin ..."
PATH="$postgresql_bin:$PATH" test/with_tmp_db stack test PATH="$postgresql_bin:$PATH" test/with_tmp_db stack test
- name: Save built executable as artifact - name: Save built executable as artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: ${{ matrix.artifact }} name: ${{ matrix.artifact }}
path: | path: |
@@ -216,7 +216,7 @@ jobs:
GITHUB_COMMIT: ${{github.event.pull_request.head.sha || github.sha}} GITHUB_COMMIT: ${{github.event.pull_request.head.sha || github.sha}}
run: .github/get_cirrusci_freebsd run: .github/get_cirrusci_freebsd
- name: Save executable as artifact - name: Save executable as artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: postgrest-freebsd-x64 name: postgrest-freebsd-x64
path: postgrest path: postgrest
@@ -276,7 +276,7 @@ jobs:
echo "Relevant extract from CHANGELOG.md:" echo "Relevant extract from CHANGELOG.md:"
cat CHANGES.md cat CHANGES.md
- name: Save CHANGES.md as artifact - name: Save CHANGES.md as artifact
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: release-changes name: release-changes
path: CHANGES.md path: CHANGES.md
@@ -321,7 +321,7 @@ jobs:
artifacts/postgrest-windows-x64/postgrest.exe artifacts/postgrest-windows-x64/postgrest.exe
- name: Save release bundle - name: Save release bundle
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: release-bundle name: release-bundle
path: release-bundle path: release-bundle
+1 -1
View File
@@ -27,7 +27,7 @@ jobs:
postgrest-loadtest-against main postgrest-loadtest-against main
postgrest-loadtest-report > loadtest/loadtest.md postgrest-loadtest-report > loadtest/loadtest.md
- name: Upload report - name: Upload report
uses: actions/upload-artifact@v2.3.1 uses: actions/upload-artifact@v3
with: with:
name: loadtest.md name: loadtest.md
path: loadtest/loadtest.md path: loadtest/loadtest.md