Skip to content

Commit

Permalink
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 18, 2023
1 parent 6073e67 commit e0b2d54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: pnpm build:js

- name: Upload Compiled JS
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: application.js
path: public/application.js
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
run: pnpm build:css

- name: Upload Compiled CSS
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: application.css
path: public/application.css
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
run: pnpm gem:build

- name: Upload Compiled Gem
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: simplecov-tailwindcss.gem
path: ./*.gem
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
bundle exec rake test
- name: Upload coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage

0 comments on commit e0b2d54

Please sign in to comment.