Skip to content

Commit 4445a0a

Browse files
committed
Update github workflows
Signed-off-by: paulober <[email protected]>
1 parent e326eff commit 4445a0a

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/genExamples.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- name: Install Dependencies
2828
run: |
2929
pip install pycryptodomex
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
name: examples.json
4949
path: |
50-
data/0.17.0/examples.json
50+
data/0.18.0/examples.json
5151
- name: Print diff
5252
run: |
53-
git diff data/0.17.0/examples.json
53+
git diff data/0.18.0/examples.json

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
16-
- name: Setup node v20
17-
uses: actions/setup-node@v4
15+
uses: actions/checkout@v5
16+
- name: Setup node v22
17+
uses: actions/setup-node@v5
1818
with:
19-
node-version: '20'
19+
node-version: '22'
2020
cache: 'npm'
2121
- name: Install Dependencies
2222
run: |

.github/workflows/static.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v4
34-
- name: Setup node v20
35-
uses: actions/setup-node@v4
33+
uses: actions/checkout@v5
34+
- name: Setup node v22
35+
uses: actions/setup-node@v5
3636
with:
37-
node-version: '20'
37+
node-version: '22'
3838
cache: 'npm'
3939
- name: Set up Python
4040
uses: actions/setup-python@v5
@@ -51,9 +51,9 @@ jobs:
5151
npm run compile
5252
python3 scripts/genCache.py
5353
- name: Setup Pages
54-
uses: actions/configure-pages@v4
54+
uses: actions/configure-pages@v5
5555
- name: Upload artifact
56-
uses: actions/upload-pages-artifact@v3
56+
uses: actions/upload-pages-artifact@v4
5757
with:
5858
# Upload data directory
5959
path: 'data'

0 commit comments

Comments
 (0)