From 443309af05efc8dc34c59c021fde7e68e86f0757 Mon Sep 17 00:00:00 2001 From: Deb Date: Thu, 26 Jan 2023 13:56:53 -0600 Subject: [PATCH 1/4] Update deprecated actions Signed-off-by: Deb --- .github/workflows/pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 .github/workflows/pull-request.yml diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml old mode 100644 new mode 100755 index 5ad42d65..e46c78ae --- 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 # FIXME: remove this time consuming step once github stops # providing a broken package index, see @@ -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 # FIXME: remove this time consuming step once github stops # providing a broken package index, see From be3874dd680062d02b1b1b9eace1cfec32aed4c7 Mon Sep 17 00:00:00 2001 From: Deb Date: Thu, 26 Jan 2023 14:03:40 -0600 Subject: [PATCH 2/4] More deprecation edits Signed-off-by: Deb --- .github/workflows/woke.yml | 2 +- .github/workflows/woke_pr.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 .github/workflows/woke.yml mode change 100644 => 100755 .github/workflows/woke_pr.yml diff --git a/.github/workflows/woke.yml b/.github/workflows/woke.yml old mode 100644 new mode 100755 index 8943d2a7..823af011 --- 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 - 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..88986ce4 --- 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 - uses: get-woke/woke-action-reviewdog@v0 with: github-token: ${{ secrets.GITHUB_TOKEN }} From 7c6a33bfb69b7007fefb3fa9646ad3e704fccd57 Mon Sep 17 00:00:00 2001 From: Deb Date: Thu, 26 Jan 2023 14:10:43 -0600 Subject: [PATCH 3/4] Deprecated actions 3 Signed-off-by: Deb --- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/woke.yml | 2 +- .github/workflows/woke_pr.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e46c78ae..5c326c40 100755 --- 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 + - uses: actions/checkout@v3 # FIXME: remove this time consuming step once github stops # providing a broken package index, see @@ -106,7 +106,7 @@ jobs: # Makefile downgrades the Sphinx warnings, they are not errors any more env: {LAX: 1} steps: - - uses: actions/checkout + - 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 index 823af011..92cb7bb5 100755 --- 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 + - uses: actions/checkout@3 - name: woke uses: get-woke/woke-action@v0 with: diff --git a/.github/workflows/woke_pr.yml b/.github/workflows/woke_pr.yml index 88986ce4..f8892178 100755 --- 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 + - uses: actions/checkout@3 - uses: get-woke/woke-action-reviewdog@v0 with: github-token: ${{ secrets.GITHUB_TOKEN }} From 75f4a360bdcbb46af89a02d177a7707162190876 Mon Sep 17 00:00:00 2001 From: Deb Date: Thu, 26 Jan 2023 14:22:55 -0600 Subject: [PATCH 4/4] last depre action change Signed-off-by: Deb --- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/woke.yml | 2 +- .github/workflows/woke_pr.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 5c326c40..f10d87ff 100755 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -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 diff --git a/.github/workflows/woke.yml b/.github/workflows/woke.yml index 92cb7bb5..8338578c 100755 --- 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@3 + - 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 index f8892178..7aa97088 100755 --- 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@3 + - uses: actions/checkout@v3 - uses: get-woke/woke-action-reviewdog@v0 with: github-token: ${{ secrets.GITHUB_TOKEN }}