From e1df276999e13aca9e0198920327482925698a37 Mon Sep 17 00:00:00 2001 From: Benjamin Bossan Date: Thu, 1 Dec 2022 14:23:10 +0100 Subject: [PATCH 1/2] CI: Update version of GH checkout action Version 4 should get rid of the deprecation warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/build-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index d9aeb5fc..bd6d61db 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -38,7 +38,7 @@ jobs: # message and make it available in later steps. This is because we want to # check the content of the commit message, but on PRs, it's replaced by an # artificial commit message. See https://github.com/skops-dev/skops/pull/147 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{github.event.after}} From ef0360d7075a44a23615c25da2cfac28809cb845 Mon Sep 17 00:00:00 2001 From: Benjamin Bossan Date: Thu, 1 Dec 2022 14:28:05 +0100 Subject: [PATCH 2/2] Oops, changed the wrong action's version --- .github/workflows/build-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index bd6d61db..25066be1 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -38,7 +38,7 @@ jobs: # message and make it available in later steps. This is because we want to # check the content of the commit message, but on PRs, it's replaced by an # artificial commit message. See https://github.com/skops-dev/skops/pull/147 - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{github.event.after}} @@ -48,7 +48,7 @@ jobs: shell: bash - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }}