Skip to content

Commit 866f06d

Browse files
committed
Updated action versions for Node.js 24 support
(soon to be required by GitHub runners)
1 parent fadc5be commit 866f06d

3 files changed

Lines changed: 34 additions & 34 deletions

File tree

.github/workflows/cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
6363
- name: Save log files
6464
if: ${{ always() }}
65-
uses: actions/upload-artifact@v6
65+
uses: actions/upload-artifact@v7
6666
with:
6767
name: logfiles_${{ env.TIMESTAMP }}_cache
6868
path: |

.github/workflows/main.yaml

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
1-
name: Code Checks
2-
3-
on: pull_request
4-
5-
defaults:
6-
run:
7-
shell: bash
8-
9-
jobs:
10-
spelling-check:
11-
name: Spelling Check
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v4
15-
- name: Check spelling
16-
uses: crate-ci/typos@v1.22.7
17-
with:
18-
files: ./_posts ./README.md ./about/faq.md ./about/contributing.md
19-
20-
python-check:
21-
name: Python Check
22-
runs-on: ubuntu-latest
23-
steps:
24-
- uses: actions/checkout@v4
25-
- name: Setup Python
26-
uses: actions/setup-python@v5
27-
with:
28-
python-version: '3.11'
29-
cache: 'pip'
30-
- name: Install dependencies
31-
run: pip install flake8 black
32-
- run: make test
1+
name: Code Checks
2+
3+
on: pull_request
4+
5+
defaults:
6+
run:
7+
shell: bash
8+
9+
jobs:
10+
spelling-check:
11+
name: Spelling Check
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v6
15+
- name: Check spelling
16+
uses: crate-ci/typos@v1.22.7
17+
with:
18+
files: ./_posts ./README.md ./about/faq.md ./about/contributing.md
19+
20+
python-check:
21+
name: Python Check
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v6
25+
- name: Setup Python
26+
uses: actions/setup-python@v5
27+
with:
28+
python-version: '3.11'
29+
cache: 'pip'
30+
- name: Install dependencies
31+
run: pip install flake8 black
32+
- run: make test

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
125125
- name: Save log files
126126
if: ${{ always() }}
127-
uses: actions/upload-artifact@v6
127+
uses: actions/upload-artifact@v7
128128
with:
129129
name: logfiles_${{ env.TIMESTAMP }}_update
130130
path: |

0 commit comments

Comments
 (0)