Skip to content

Commit

Permalink
Merge pull request #410 from oddbird/dependabot/github_actions/action…
Browse files Browse the repository at this point in the history
…s/upload-artifact-4

Bump actions/upload-artifact from 3 to 4
  • Loading branch information
jgerigmeyer authored Dec 19, 2023
2 parents c978be9 + d2eef07 commit 80d21b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
JEST_JUNIT_OUTPUT_DIR: './coverage/client'
run: yarn test:js:client:ci
- name: Upload coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: frontend-coverage
path: coverage
Expand All @@ -87,7 +87,7 @@ jobs:
cache: yarn
- run: yarn install
- name: Download coverage results
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: frontend-coverage
path: coverage
Expand Down
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"files.trimTrailingWhitespace": true,
"npm.packageManager": "yarn",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.formatOnSave": true,
"eslint.validate": [
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"[scss]": {
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
"source.fixAll.stylelint": "explicit"
}
}
}

0 comments on commit 80d21b1

Please sign in to comment.