aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2024-01-28 14:58:36 -0800
committerZac Medico <zmedico@gentoo.org>2024-01-28 15:01:56 -0800
commite9e2809eeb9bd063b0f36f05b1773435ed7ef7c8 (patch)
tree449e273439ba5a94fd4604860350bd3ce1050007 /.github
parentinstalled_dynlibs: Resolve *.so symlinks (diff)
downloadportage-e9e2809eeb9bd063b0f36f05b1773435ed7ef7c8.tar.gz
portage-e9e2809eeb9bd063b0f36f05b1773435ed7ef7c8.tar.bz2
portage-e9e2809eeb9bd063b0f36f05b1773435ed7ef7c8.zip
actions: Use psf/black@23.12.1 and sync pre-commit version
The versions must be consistent, since psf/black@stable now refers to 24.1.1 which triggers some reformatting relative to black 23.x. The consistency should correct lint failures like this: https://github.com/gentoo/portage/actions/runs/7667403073/job/20950314014?pr=1239 Signed-off-by: Zac Medico <zmedico@gentoo.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 69b9578d4..f75eaa0e7 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -13,7 +13,7 @@ jobs:
echo "::set-output name=missed::$(
find bin -type f -not -name '*.py' -not -name '*.sh' | \
xargs grep -l '#!/usr/bin/env python' | tr $'\n' ' ')"
- - uses: psf/black@stable
+ - uses: psf/black@23.12.1
with:
src: . ${{ steps.stragglers.outputs.missed }}