Skip to content

Commit

Permalink
Feature newer deps (#10)
Browse files Browse the repository at this point in the history
* Bump actions/checkout from @V3 to @v4

* Prevent consumer CI issues

* Bump our dep.s where new versions are available

* npm install (and lock it)

* Prepare for newer release

* Act on CI results: fix some stuff
  • Loading branch information
paulo-ferraz-oliveira authored May 7, 2024
1 parent 2663dc0 commit 534819f
Show file tree
Hide file tree
Showing 13 changed files with 962 additions and 627 deletions.
7 changes: 0 additions & 7 deletions .eslintrc.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Create dist
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: tool-versions
name: Parse .tool-versions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: tool-versions
name: Parse .tool-versions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: tool-versions
name: Parse .tool-versions
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ representative at an online or offline event.

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
[email protected].
<[email protected]>.
All complaints will be reviewed and investigated promptly and fairly.

All community leaders are obligated to respect the privacy and security of the
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: paulo-ferraz-oliveira/parse-tool-versions@v1
id: tool-versions
- run: echo ${{steps.tool-versions.outputs.ruby}} # 2.5.3
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ you to ensure that your findings get the appropriate handling.
## Reporting Security Issues

If you believe you have found a security vulnerability in this repository,
please report it to [email protected].
please report it to <[email protected]>.

Please do not report security vulnerabilities through public channels, like
GitHub issues, discussions, or pull requests.
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ description: >
name: "@paulo-ferraz-oliveira/parse-tool-versions"
runs:
main: dist/index.mjs
using: node16
using: node20
2 changes: 1 addition & 1 deletion dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down
6 changes: 6 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
module.exports = [{
rules: {
"no-trailing-spaces": "error",
camelcase: "error"
}
}];
Loading

0 comments on commit 534819f

Please sign in to comment.