Skip to content

Commit 8964bfb

Browse files
Bump actions/setup-python from 2 to 4
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 4. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...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]>
1 parent 2728d15 commit 8964bfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v3
2424
- name: Set up Python
25-
uses: actions/setup-python@v2
25+
uses: actions/setup-python@v4
2626
with:
2727
python-version: "3.10"
2828
- name: Install build package

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ jobs:
5555
echo "PATH=$PWD/bin:$PATH" >> $GITHUB_ENV
5656
5757
- uses: actions/checkout@v3
58-
# NOTE: actions/setup-python@v2 make use of a cache within the GitHub base
58+
# NOTE: actions/setup-python@v4 make use of a cache within the GitHub base
5959
# environment and setup in a fraction of a second.
6060
- name: Install Python ${{ matrix.python }}
61-
uses: actions/setup-python@v2
61+
uses: actions/setup-python@v4
6262
with:
6363
python-version: ${{ matrix.python }}
6464

0 commit comments

Comments
 (0)