Skip to content

Commit 8a65bff

Browse files
committed
feat: bump to use node20 runtime, actions/checkout to v4
1 parent 41170f1 commit 8a65bff

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/publish_master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Publish master image
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Build
1818
run: |
1919
GITHUB_REPOSITORY_LC=$(echo "${GITHUB_REPOSITORY}" | tr [A-Z] [a-z])

.github/workflows/publish_stable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Publish stable image
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- name: Build
1515
run: |
1616
GITHUB_REPOSITORY_LC=$(echo "${GITHUB_REPOSITORY}" | tr [A-Z] [a-z])

.github/workflows/testing.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Set up Python
2525
uses: actions/setup-python@v4
@@ -48,7 +48,7 @@ jobs:
4848
name: Test run action
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252
- uses: ./
5353
with:
5454
path: test/testdata
@@ -58,7 +58,7 @@ jobs:
5858
name: Check for spelling errors
5959
runs-on: ubuntu-latest
6060
steps:
61-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6262
- uses: ./
6363
with:
6464
check_filenames: true
@@ -86,7 +86,7 @@ jobs:
8686
include:
8787
- codespell_pip_version: 'git+https://github.com/codespell-project/codespell.git'
8888
steps:
89-
- uses: actions/checkout@v3
89+
- uses: actions/checkout@v4
9090
- name: Set up Python
9191
uses: actions/setup-python@v4
9292
- run: pip3 --quiet --quiet install ${{ matrix.codespell_pip_version }}

codespell-problem-matcher/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'codespell problem matcher'
22
author: 'Peter Newman'
33
description: 'Shows codespell errors as annotation (with file and code line) in GitHub Actions'
44
runs:
5-
using: 'node12'
5+
using: 'node20'
66
main: 'index.js'
77
branding:
88
icon: 'search'

0 commit comments

Comments
 (0)