aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2022-12-01 12:12:25 -0600
committerSam James <sam@gentoo.org>2022-12-03 01:39:53 +0000
commit8722c453536f76c398e7a098006c0534c37adbf2 (patch)
tree054edc77a073868025025aa066a6f57587e52d36 /.github
parentManual string formatting updates (diff)
downloadportage-8722c453536f76c398e7a098006c0534c37adbf2.tar.gz
portage-8722c453536f76c398e7a098006c0534c37adbf2.tar.bz2
portage-8722c453536f76c398e7a098006c0534c37adbf2.zip
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@gentoo.org> Closes: https://github.com/gentoo/portage/pull/953 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/black.yml2
-rw-r--r--.github/workflows/ci.yml4
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