Skip to content

Commit 4e20079

Browse files
committed
update github deploy action to latest versions
1 parent 83ef2b4 commit 4e20079

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/deploy-prod.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,31 @@ env:
1313

1414
jobs:
1515
deploy:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020
with:
2121
path: DocViewer
2222

2323
- name: Checkout JSKit
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525
with:
2626
repository: breakside/JSKit
2727
ref: prod
2828
path: JSKit
2929

3030
- name: Setup Node
31-
uses: actions/setup-node@v1
31+
uses: actions/setup-node@v4
3232

3333
- name: Bootstrap Install JSKit
3434
run: npm install
3535
working-directory: JSKit
3636

37+
- name: Bootstrap Install JSKit (again)
38+
run: npm install
39+
working-directory: JSKit
40+
3741
- name: Generate Docs
3842
run: npx jskit doc Documentation/Code/JSKit.doc.yaml ../DocViewer/DocViewerWeb
3943
working-directory: JSKit

0 commit comments

Comments
 (0)