From 372266a9087639729521fcd3d98c2843f33a057e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:55:17 +0000 Subject: [PATCH] chore(deps): update actions/setup-python action to v5 --- .github/actions/setup-python/action.yml | 2 +- .github/workflows/fix-style.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-python/action.yml b/.github/actions/setup-python/action.yml index 96d127df..a3b76aa7 100644 --- a/.github/actions/setup-python/action.yml +++ b/.github/actions/setup-python/action.yml @@ -2,6 +2,6 @@ name: "Setup Python" runs: using: "composite" steps: - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: "3.10" diff --git a/.github/workflows/fix-style.yml b/.github/workflows/fix-style.yml index 60bd9af5..cb3d7d1e 100644 --- a/.github/workflows/fix-style.yml +++ b/.github/workflows/fix-style.yml @@ -30,7 +30,7 @@ jobs: with: repository: '${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRepositoryOwner.login }}/${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRepository.name }}' ref: '${{ fromJSON(steps.pr-info.outputs.PR_INFO).headRefName }}' - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 - run: python -m pip install pre-commit - run: pre-commit run --all-files --show-diff-on-failure --color=always - uses: EndBug/add-and-commit@v9