Skip to content

Commit

Permalink
Configure Action for Node.js 20 support and upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonVS committed Feb 9, 2024
1 parent 9de3270 commit 09e7663
Show file tree
Hide file tree
Showing 12 changed files with 40,528 additions and 1,376 deletions.
21 changes: 4 additions & 17 deletions .all-contributorsrc
@@ -1,7 +1,5 @@
{
"files": [
"README.md"
],
"files": ["README.md"],
"imageSize": 100,
"commit": false,
"contributors": [
Expand All @@ -10,32 +8,21 @@
"name": "Timon van Spronsen",
"avatar_url": "https://avatars2.githubusercontent.com/u/876666?v=4",
"profile": "http://www.timonvanspronsen.nl/",
"contributions": [
"code",
"ideas",
"test",
"doc"
]
"contributions": ["code", "ideas", "test", "doc"]
},
{
"login": "amacado",
"name": "Clemens Bastian",
"avatar_url": "https://avatars2.githubusercontent.com/u/8781699?v=4",
"profile": "http://clemensbastian.de",
"contributions": [
"code",
"doc",
"bug"
]
"contributions": ["code", "doc", "bug"]
},
{
"login": "hugo-vrijswijk",
"name": "Hugo van Rijswijk",
"avatar_url": "https://avatars3.githubusercontent.com/u/10114577?v=4",
"profile": "https://github.com/hugo-vrijswijk",
"contributions": [
"code"
]
"contributions": ["code"]
}
],
"contributorsPerLine": 7,
Expand Down
3 changes: 3 additions & 0 deletions .gitattributes
@@ -0,0 +1,3 @@
* text=auto eol=lf

dist/** -diff linguist-generated=true
1 change: 1 addition & 0 deletions .node-version
@@ -0,0 +1 @@
20
3 changes: 2 additions & 1 deletion .prettierrc
@@ -1,4 +1,5 @@
{
"printWidth": 120,
"singleQuote": true
"singleQuote": true,
"endOfLine": "lf"
}
2 changes: 1 addition & 1 deletion __tests__/utils/config.test.ts
Expand Up @@ -19,7 +19,7 @@ describe('getConfig', () => {
'path/to/config',
{ owner: 'repo-owner', repo: 'repo-name' },
'ref',
defaultConfig
defaultConfig,
);

expect(config).toBe(defaultConfig);
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -12,5 +12,5 @@ branding:
icon: 'tag'
color: 'white'
runs:
using: 'node16'
main: 'index.js'
using: 'node20'
main: 'dist/index.js'

0 comments on commit 09e7663

Please sign in to comment.