diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml old mode 100644 new mode 100755 index 5ad42d65..f10d87ff --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -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 @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/woke.yml b/.github/workflows/woke.yml old mode 100644 new mode 100755 index 8943d2a7..8338578c --- a/.github/workflows/woke.yml +++ b/.github/workflows/woke.yml @@ -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: diff --git a/.github/workflows/woke_pr.yml b/.github/workflows/woke_pr.yml old mode 100644 new mode 100755 index 0c307257..7aa97088 --- a/.github/workflows/woke_pr.yml +++ b/.github/workflows/woke_pr.yml @@ -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 }}