From 65122d4d400ded162ff3dee308d2cb3156696bbf Mon Sep 17 00:00:00 2001 From: anthony sottile <103459774+asottile-sentry@users.noreply.github.com> Date: Mon, 31 Oct 2022 13:42:51 -0400 Subject: [PATCH] ref: upgrade actions/setup-python to avoid set-output deprecation (#1789) Committed via https://github.com/asottile/all-repos --- .github/workflows/pre-commit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index f46e01d..06fd36e 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -10,5 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.x - uses: pre-commit/action@v3.0.0