Skip to content

Commit bc01cc5

Browse files
committed
Update actions.
1 parent 45489d6 commit bc01cc5

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/gh-pages-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
deploy:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
with:
1212
fetch-depth: 0
13-
- uses: actions/setup-python@v5
13+
- uses: actions/setup-python@v6
1414
with:
1515
python-version: 3.12
1616
- name: Setup Python

.github/workflows/pr-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
preview:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919
- name: Install Python
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: 3.12
2323

@@ -37,7 +37,7 @@ jobs:
3737
run: echo ${{ github.event.number }} > ./docs/pr-number.txt
3838

3939
- name: Upload artifact
40-
uses: actions/upload-artifact@v4
40+
uses: actions/upload-artifact@v7
4141
if: success()
4242
with:
4343
name: site

.github/workflows/pr-deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Download Artifact
23-
uses: dawidd6/action-download-artifact@v4
23+
uses: dawidd6/action-download-artifact@v21
2424
with:
2525
workflow: ${{ github.event.workflow_run.workflow_id }}
2626
name: site
@@ -36,9 +36,9 @@ jobs:
3636
echo "<html><body><div>Redirecting... <a href=\"/docs\">Click Here</a></div><script>window.location = \"/docs\";</script></body></html>" > ./site/index.html
3737
3838
- name: Setup NPM
39-
uses: actions/setup-node@v4
39+
uses: actions/setup-node@v6
4040
with:
41-
node-version: 20
41+
node-version: 24
4242

4343
- name: Install Surge
4444
run: npm install -g surge

.github/workflows/pr-teardown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515

1616
steps:
1717
- name: Setup NPM
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@v6
1919
with:
20-
node-version: 20
20+
node-version: 24
2121

2222
- name: Install Surge
2323
run: npm install -g surge

0 commit comments

Comments
 (0)