Skip to content

Commit 3a984b8

Browse files
chore(deps): bump actions/setup-python from 3 to 4 (#251)
* chore(deps): bump actions/setup-python from 3 to 4 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 3 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v3...v4) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * Always use `python-version` with `actions/setup-python@v4` Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthieu Darbois <[email protected]>
1 parent b14fc86 commit 3a984b8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
runs-on: ubuntu-20.04
2727
steps:
2828
- uses: actions/checkout@v3
29-
- uses: actions/setup-python@v3
29+
- uses: actions/setup-python@v4
30+
with:
31+
python-version: "3.x"
3032
- uses: pre-commit/[email protected]
3133

3234

@@ -168,7 +170,7 @@ jobs:
168170

169171
steps:
170172
- uses: actions/checkout@v2
171-
- uses: actions/setup-python@v2
173+
- uses: actions/setup-python@v4
172174
name: Install Python ${{ matrix.python }}
173175
with:
174176
python-version: ${{ matrix.python }}

0 commit comments

Comments
 (0)