Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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