Skip to content

Commit 563c3cd

Browse files
committed
Update action deps
1 parent 4421fb1 commit 563c3cd

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
28-
- uses: actions/setup-node@v3
27+
uses: actions/checkout@v4
28+
- uses: actions/setup-node@v4
2929
with:
30-
node-version: 18
30+
node-version: 20
3131
cache: npm
3232
- name: Install dependencies
3333
run: npm ci
3434
- name: Build website
3535
run: npm run build
3636
- name: Setup Pages
37-
uses: actions/configure-pages@v3
37+
uses: actions/configure-pages@v5
3838
- name: Upload artifact
39-
uses: actions/upload-pages-artifact@v1
39+
uses: actions/upload-pages-artifact@v3
4040
with:
4141
path: './build'
4242
- name: Deploy to GitHub Pages
4343
id: deployment
44-
uses: actions/deploy-pages@v2
44+
uses: actions/deploy-pages@v4

.github/workflows/deployPreview.yml

Lines changed: 2 additions & 2 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@v3
26+
uses: actions/checkout@v4
2727
- name: Clone to preview folder (excluding actions)
2828
run: rsync -arv --delete --delete-excluded --exclude=".github" --exclude="preview-output" --exclude="preview-output" --exclude=".git" ./ preview-output/
2929
- name: Push to staging repository
@@ -35,4 +35,4 @@ jobs:
3535
destination-github-username: 'UnifiedID2'
3636
destination-repository-name: 'uid2-docs-preview'
3737
target-branch: main
38-
target-directory: preview
38+
target-directory: preview

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
17-
- uses: actions/setup-node@v3
16+
uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 18
19+
node-version: 20
2020
cache: npm
2121
- name: Install dependencies
2222
run: npm ci

0 commit comments

Comments
 (0)