From 606e56d78f7c5a73533c559e8cc0888a54b1b2d4 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 8 Jun 2022 19:42:43 +0000 Subject: [PATCH 1/2] Update actions/setup-python action to v4 --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index fc00ee8..37b908f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,7 +17,7 @@ jobs: with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v4 - name: Lint Code Base uses: github/super-linter@v4 env: From 1370596f278b2aa237b0cca7a0e28145430a4ac0 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Thu, 9 Jun 2022 07:47:48 +0200 Subject: [PATCH 2/2] Fixed missing Python version Python version hast to be set with v4 of the action. The version is now fixed to what is in Alpine 3.14. --- .github/workflows/push.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 37b908f..414f3fe 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -18,6 +18,8 @@ jobs: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 - uses: actions/setup-python@v4 + with: + python-version: '3.9' - name: Lint Code Base uses: github/super-linter@v4 env: