Skip to content

Commit

Permalink
build(deps): Bump actions/upload-artifact from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 15, 2023
1 parent 5d4fd33 commit 3c420c9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,35 +61,35 @@ jobs:
if: |
(env.GIT_DIFF && matrix.module == 'x/intertx') ||
github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-app
path: coverage-app.out
if: |
(env.GIT_DIFF && matrix.module == 'app') ||
github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-types
path: coverage-types.out
if: |
(env.GIT_DIFF && matrix.module == 'types') ||
github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-x-data
path: coverage-x-data.out
if: |
(env.GIT_DIFF && matrix.module == 'x/data') ||
github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-x-ecocredit
path: coverage-x-ecocredit.out
if: |
(env.GIT_DIFF && matrix.module == 'x/ecocredit') ||
github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-x-intertx
path: coverage-x-intertx.out
Expand All @@ -115,7 +115,7 @@ jobs:
if: env.GIT_DIFF || github.ref == 'refs/heads/main'
- run: make test-integration
if: env.GIT_DIFF || github.ref == 'refs/heads/main'
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage-integration
path: coverage-integration.out
Expand Down

0 comments on commit 3c420c9

Please sign in to comment.