Skip to content

Commit 62c7a7d

Browse files
authored
Merge pull request #111 from OP-TED/fix-ci
Update version of a Github action to fix CI build error
2 parents ed2a9ac + c027e3b commit 62c7a7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/antora-worflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: [ ubuntu-latest ]
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
- name: "Install Node 16"
1515
uses: actions/setup-node@v3
1616
with:
@@ -20,7 +20,7 @@ jobs:
2020
- name: "Generate site using antora site action"
2121
run: make build-site
2222
- name: "Upload generated site"
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: site
2626
path: "${{ github.workspace }}/build/${{ env.SITE_DIR }}"
@@ -37,9 +37,9 @@ jobs:
3737
with:
3838
node-version: 16
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v4
4141
- name: Download generated site
42-
uses: actions/download-artifact@v3
42+
uses: actions/download-artifact@v4
4343
with:
4444
name: site
4545
path: "${{ github.workspace }}/${{ env.SITE_DIR }}"

0 commit comments

Comments
 (0)