Skip to content

Commit b5b5087

Browse files
committed
fix(workflows): update actions/checkout and actions/setup-node to v6
1 parent 3a7a36b commit b5b5087

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v6
2020
with:
21-
node-version: 18.x
21+
node-version: lts/*
2222

2323
- run: npx githublogen
2424
env:

0 commit comments

Comments
 (0)