Skip to content

Commit

Permalink
Update deprecated actions (#450)
Browse files Browse the repository at this point in the history
* Update deprecated actions

Signed-off-by: Deb <deb.taylor@intel.com>
  • Loading branch information
deb-intel authored Jan 26, 2023
1 parent 0d8991b commit 0960d7c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull-request.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# FIXME: remove this time consuming step once github stops
# providing a broken package index, see
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
# https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
- name: upload HTML for deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/publish' }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: html
path: _build/html
Expand All @@ -87,7 +87,7 @@ jobs:
# download the build result from the same workflow
# https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
- name: download HTML
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: html
path: html
Expand All @@ -106,7 +106,7 @@ jobs:
# Makefile downgrades the Sphinx warnings, they are not errors any more
env: {LAX: 1}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# FIXME: remove this time consuming step once github stops
# providing a broken package index, see
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/woke.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: woke check for all file
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: woke
uses: get-woke/woke-action@v0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/woke_pr.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: woke check for patch
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: get-woke/woke-action-reviewdog@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 0960d7c

Please sign in to comment.