mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-05 13:05:09 +00:00
build(deps): Bump actions/upload-artifact from 2 to 3 (#8537)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
10
.github/workflows/coverage.yml
vendored
10
.github/workflows/coverage.yml
vendored
@@ -16,19 +16,19 @@ jobs:
|
|||||||
- name: Split pkgs into 4 files
|
- name: Split pkgs into 4 files
|
||||||
run: split -d -n l/4 pkgs.txt pkgs.txt.part.
|
run: split -d -n l/4 pkgs.txt pkgs.txt.part.
|
||||||
# cache multiple
|
# cache multiple
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: "${{ github.sha }}-00"
|
name: "${{ github.sha }}-00"
|
||||||
path: ./pkgs.txt.part.00
|
path: ./pkgs.txt.part.00
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: "${{ github.sha }}-01"
|
name: "${{ github.sha }}-01"
|
||||||
path: ./pkgs.txt.part.01
|
path: ./pkgs.txt.part.01
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: "${{ github.sha }}-02"
|
name: "${{ github.sha }}-02"
|
||||||
path: ./pkgs.txt.part.02
|
path: ./pkgs.txt.part.02
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: "${{ github.sha }}-03"
|
name: "${{ github.sha }}-03"
|
||||||
path: ./pkgs.txt.part.03
|
path: ./pkgs.txt.part.03
|
||||||
@@ -82,7 +82,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -mod=readonly -timeout 8m -race -coverprofile=${{ matrix.part }}profile.out -covermode=atomic
|
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -mod=readonly -timeout 8m -race -coverprofile=${{ matrix.part }}profile.out -covermode=atomic
|
||||||
if: env.GIT_DIFF
|
if: env.GIT_DIFF
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: "${{ github.sha }}-${{ matrix.part }}-coverage"
|
name: "${{ github.sha }}-${{ matrix.part }}-coverage"
|
||||||
path: ./${{ matrix.part }}profile.out
|
path: ./${{ matrix.part }}profile.out
|
||||||
|
|||||||
4
.github/workflows/fuzz-nightly.yml
vendored
4
.github/workflows/fuzz-nightly.yml
vendored
@@ -45,14 +45,14 @@ jobs:
|
|||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
|
|
||||||
- name: Archive crashers
|
- name: Archive crashers
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: crashers
|
name: crashers
|
||||||
path: test/fuzz/**/crashers
|
path: test/fuzz/**/crashers
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
|
|
||||||
- name: Archive suppressions
|
- name: Archive suppressions
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: suppressions
|
name: suppressions
|
||||||
path: test/fuzz/**/suppressions
|
path: test/fuzz/**/suppressions
|
||||||
|
|||||||
Reference in New Issue
Block a user