Skip to content

Commit 0960d7c

Browse files
authored
Update deprecated actions (#450)
* Update deprecated actions Signed-off-by: Deb <[email protected]>
1 parent 0d8991b commit 0960d7c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pull-request.yml

100644100755
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-20.04
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939

4040
# FIXME: remove this time consuming step once github stops
4141
# providing a broken package index, see
@@ -74,7 +74,7 @@ jobs:
7474
# https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
7575
- name: upload HTML for deploy
7676
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/publish' }}
77-
uses: actions/upload-artifact@v2
77+
uses: actions/upload-artifact@v3
7878
with:
7979
name: html
8080
path: _build/html
@@ -87,7 +87,7 @@ jobs:
8787
# download the build result from the same workflow
8888
# https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
8989
- name: download HTML
90-
uses: actions/download-artifact@v2
90+
uses: actions/download-artifact@v3
9191
with:
9292
name: html
9393
path: html
@@ -106,7 +106,7 @@ jobs:
106106
# Makefile downgrades the Sphinx warnings, they are not errors any more
107107
env: {LAX: 1}
108108
steps:
109-
- uses: actions/checkout@v2
109+
- uses: actions/checkout@v3
110110

111111
# FIXME: remove this time consuming step once github stops
112112
# providing a broken package index, see

.github/workflows/woke.yml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: woke check for all file
2020
runs-on: ubuntu-20.04
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- name: woke
2424
uses: get-woke/woke-action@v0
2525
with:

.github/workflows/woke_pr.yml

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: woke check for patch
2222
runs-on: ubuntu-20.04
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- uses: get-woke/woke-action-reviewdog@v0
2626
with:
2727
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)