commit:     8722c453536f76c398e7a098006c0534c37adbf2
Author:     John Helmert III <ajak <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  1 18:12:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec  3 01:39:53 2022 +0000
URL:        https://gitweb.gentoo.org/proj/portage.git/commit/?id=8722c453

update Actions versions

We've started getting warnings about the versions of our Actions [1]:

Node.js 12 actions are deprecated. For more information see: 
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
 Please update the following actions to use Node.js 16: actions/checkout@v2, 
actions/setup-python@v2

[1] https://github.com/gentoo/portage/actions/runs/3595151962

Signed-off-by: John Helmert III <ajak <AT> gentoo.org>
Closes: https://github.com/gentoo/portage/pull/953
Signed-off-by: Sam James <sam <AT> gentoo.org>

 .github/workflows/black.yml | 2 +-
 .github/workflows/ci.yml    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml
index 1d6f1378c..977f62d89 100644
--- a/.github/workflows/black.yml
+++ b/.github/workflows/black.yml
@@ -6,7 +6,7 @@ jobs:
   lint:
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/checkout@v2
+      - uses: actions/checkout@v3
       - name: "Collect stragglers that Black misses"
         id: stragglers
         run: |

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5869114d8..2e6861b6c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,9 +24,9 @@ jobs:
       fail-fast: false
 
     steps:
-    - uses: actions/checkout@v2
+    - uses: actions/checkout@v3
     - name: Set up Python ${{ matrix.python-version }}
-      uses: actions/setup-python@v2
+      uses: actions/setup-python@v4
       with:
         python-version: ${{ matrix.python-version }}
     - name: Install python dependencies

Reply via email to