Skip to content

Commit ee79ffa

Browse files
chore(deps): bump actions/setup-python from 2 to 3 (#183)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2 to 3. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c96cea4 commit ee79ffa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/checkout@v2
1919
with:
2020
fetch-depth: 0
21-
- uses: actions/setup-python@v2
21+
- uses: actions/setup-python@v3
2222
with:
2323
python-version: 3.9
2424
- name: Install dependencies

.github/workflows/manual-release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818
with:
1919
fetch-depth: 0
20-
- uses: actions/setup-python@v2
20+
- uses: actions/setup-python@v3
2121
with:
2222
python-version: 3.9
2323
- name: Install dependencies

.github/workflows/poetry.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/checkout@v2
2828
- name: Setup Python Environment
2929
# see https://github.com/actions/setup-python
30-
uses: actions/setup-python@v2
30+
uses: actions/setup-python@v3
3131
with:
3232
python-version: ${{ env.PYTHON_VERISON_DEFAULT }}
3333
architecture: 'x64'
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/checkout@v2
6161
- name: Setup Python Environment
6262
# see https://github.com/actions/setup-python
63-
uses: actions/setup-python@v2
63+
uses: actions/setup-python@v3
6464
with:
6565
python-version: ${{ matrix.python-version }}
6666
architecture: 'x64'
@@ -108,7 +108,7 @@ jobs:
108108
run: mkdir ${{ env.REPORTS_DIR }}
109109
- name: Setup Python Environment
110110
# see https://github.com/actions/setup-python
111-
uses: actions/setup-python@v2
111+
uses: actions/setup-python@v3
112112
with:
113113
python-version: ${{ matrix.python-version }}
114114
architecture: 'x64'

0 commit comments

Comments
 (0)