Skip to content

Commit 534819f

Browse files
Feature newer deps (#10)
* 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
1 parent 2663dc0 commit 534819f

13 files changed

+962
-627
lines changed

.eslintrc.yml

-7
This file was deleted.

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Create dist
1717
run: |

.github/workflows/macos-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- id: tool-versions
1717
name: Parse .tool-versions

.github/workflows/ubuntu-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- id: tool-versions
1717
name: Parse .tool-versions

.github/workflows/windows-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- id: tool-versions
1717
name: Parse .tool-versions

CODE_OF_CONDUCT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
paulo.ferraz.oliveira@gmail.com.
63+
<paulo.ferraz.oliveira@gmail.com>.
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
ci:
4141
runs-on: ubuntu-latest
4242
steps:
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
- uses: paulo-ferraz-oliveira/parse-tool-versions@v1
4545
id: tool-versions
4646
- run: echo ${{steps.tool-versions.outputs.ruby}} # 2.5.3

SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ you to ensure that your findings get the appropriate handling.
1414
## Reporting Security Issues
1515

1616
If you believe you have found a security vulnerability in this repository,
17-
please report it to paulo.ferraz.oliveira@gmail.com.
17+
please report it to <paulo.ferraz.oliveira@gmail.com>.
1818

1919
Please do not report security vulnerabilities through public channels, like
2020
GitHub issues, discussions, or pull requests.

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ description: >
99
name: "@paulo-ferraz-oliveira/parse-tool-versions"
1010
runs:
1111
main: dist/index.mjs
12-
using: node16
12+
using: node20

dist/index.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ class OidcClient {
554554
.catch(error => {
555555
throw new Error(`Failed to get ID Token. \n
556556
Error Code : ${error.statusCode}\n
557-
Error Message: ${error.result.message}`);
557+
Error Message: ${error.message}`);
558558
});
559559
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
560560
if (!id_token) {

eslint.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = [{
2+
rules: {
3+
"no-trailing-spaces": "error",
4+
camelcase: "error"
5+
}
6+
}];

0 commit comments

Comments
 (0)