Skip to content

Commit 7726deb

Browse files
authored
Upgrade the upload actions' version (#474)
1 parent d4fecdb commit 7726deb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docs-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
image: nvcr.io/nvidia/merlin/merlin-tensorflow:nightly
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
with:
1616
submodules: recursive
1717
fetch-depth: 1
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
make -C docs html
3333
- name: Upload HTML
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: html-build-artifact
3737
path: docs/build/html
@@ -44,7 +44,7 @@ jobs:
4444
echo ${{ github.event.pull_request.merged }} > ./pr/merged.txt
4545
echo ${{ github.event.action }} > ./pr/action.txt
4646
- name: Upload PR information
47-
uses: actions/upload-artifact@v3
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: pr
5050
path: pr/

.github/workflows/docs-sched-rebuild.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
image: nvcr.io/nvidia/merlin/merlin-tensorflow:nightly
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
submodules: recursive
2020
fetch-depth: 0
@@ -41,7 +41,7 @@ jobs:
4141
find docs/build -name .doctrees -prune -exec rm -rf {} \;
4242
find docs/build -name .buildinfo -exec rm {} \;
4343
- name: Upload HTML
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: html-build-artifact
4747
path: docs/build/html
@@ -53,15 +53,15 @@ jobs:
5353
needs: [build]
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
with:
5858
ref: "gh-pages"
5959
- name: Initialize Git configuration
6060
run: |
6161
git config user.name docs-sched-rebuild
6262
git config user.email [email protected]
6363
- name: Download artifacts
64-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6565
with:
6666
name: html-build-artifact
6767
- name: Copy HTML directories

0 commit comments

Comments
 (0)