Skip to content

Commit

Permalink
Bump prettier from 2.8.8 to 3.0.3 (#12)
Browse files Browse the repository at this point in the history
* Bump prettier from 2.8.8 to 3.0.3

Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.3.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@2.8.8...3.0.3)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump eslint-prettier plugin as well.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Haus <[email protected]>
  • Loading branch information
dependabot[bot] and dhaus67 authored Nov 13, 2023
1 parent 277e3de commit fc8d286
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 63 deletions.
80 changes: 22 additions & 58 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
"eslint": "^8.53.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"typescript": "^5.2.2"
}
Expand Down
5 changes: 2 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@ async function run(): Promise<void> {
core.info(`${error}`)
if (isAxiosError(error)) {
core.setFailed(
`Failed to exchange token: HTTP Status: ${
error?.response?.status
} Response: ${JSON.stringify(error?.response?.data)}`
`Failed to exchange token: HTTP Status: ${error?.response
?.status} Response: ${JSON.stringify(error?.response?.data)}`
)
} else if (error instanceof Error) core.setFailed(error.message)
}
Expand Down

0 comments on commit fc8d286

Please sign in to comment.