Skip to content

Commit 6f6470b

Browse files
Update GitHub Actions
1 parent 5f4d59c commit 6f6470b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
renovate:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: 🧼 lint renovate config # Validates changes to renovate.json config file
1515
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.0.1
1616
with:
1717
config_file_path: 'renovate.json'
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- run: npm ci
2323
- run: npm run lint --if-present
2424
- run: npm run build --if-present

.github/workflows/codeql-analysis.yml

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

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/markdown-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Check out code
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111

1212
- name: Lint Markdown files
1313
uses: avto-dev/markdown-lint@v1

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
node-version: [14.x, 16.x, 17.x]
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: Use Node ${{ matrix.node-version }}
2121
uses: actions/setup-node@v4.0.1
2222
with:
@@ -30,10 +30,10 @@ jobs:
3030
needs: build
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
- uses: actions/setup-node@v4.0.1
3535
with:
36-
node-version: 16
36+
node-version: 22
3737
registry-url: https://registry.npmjs.org/
3838
- run: npm install
3939
- run: npm run build --if-present

0 commit comments

Comments
 (0)