Skip to content

Commit b028f07

Browse files
authored
Merge pull request #22 from github/node20
upgrade to node20
2 parents 977243a + 131cf5c commit b028f07

File tree

12 files changed

+601
-482
lines changed

12 files changed

+601
-482
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
language: [ 'javascript' ]
2626

2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

3030
- name: Initialize CodeQL
3131
uses: github/codeql-action/init@v2

.github/workflows/comment-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# Need to checkout for testing the Action in this repo
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
# Lock or Unlock via a comment (ex: .lock or .unlock)
2020
- uses: ./

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: setup node
19-
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3.6.0
19+
uses: actions/setup-node@v3
2020
with:
2121
node-version-file: .node-version
2222
cache: 'npm'

.github/workflows/lock-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
# Need to checkout for testing the Action in this repo
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
# Lock
2121
- uses: ./

.github/workflows/package-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: setup node
21-
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3.6.0
21+
uses: actions/setup-node@v3
2222
with:
2323
node-version-file: .node-version
2424
cache: 'npm'

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: setup node
19-
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # pin@v3.6.0
19+
uses: actions/setup-node@v3
2020
with:
2121
node-version-file: .node-version
2222
cache: 'npm'

.github/workflows/unlock-sample.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
# Need to checkout for testing the Action in this repo
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
# Lock
1717
- uses: ./

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.9.0
1+
20.6.0

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ outputs:
7777
global_lock_released:
7878
description: 'The string "true" if the global lock was released'
7979
runs:
80-
using: "node16"
80+
using: "node20"
8181
main: "dist/index.js"

dist/index.js

Lines changed: 22 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)