Skip to content

Commit bc1f9f9

Browse files
chore(deps): bump actions/setup-python from 3 to 4 (#3999)
* 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]> * Apply suggestions from code review Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <[email protected]>
1 parent 5a3a1e3 commit bc1f9f9

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions/checkout@v3
6666

6767
- name: Setup Python ${{ matrix.python }}
68-
uses: actions/setup-python@v3
68+
uses: actions/setup-python@v4
6969
with:
7070
python-version: ${{ matrix.python }}
7171

@@ -686,7 +686,9 @@ jobs:
686686
steps:
687687
- uses: actions/checkout@v3
688688

689-
- uses: actions/setup-python@v3
689+
- uses: actions/setup-python@v4
690+
with:
691+
python-version: "3.x"
690692

691693
- name: Install Doxygen
692694
run: sudo apt-get install -y doxygen librsvg2-bin # Changed to rsvg-convert in 20.04
@@ -734,7 +736,7 @@ jobs:
734736
- uses: actions/checkout@v3
735737

736738
- name: Setup Python ${{ matrix.python }}
737-
uses: actions/setup-python@v3
739+
uses: actions/setup-python@v4
738740
with:
739741
python-version: ${{ matrix.python }}
740742
architecture: x86
@@ -787,7 +789,7 @@ jobs:
787789
- uses: actions/checkout@v3
788790

789791
- name: Setup Python ${{ matrix.python }}
790-
uses: actions/setup-python@v3
792+
uses: actions/setup-python@v4
791793
with:
792794
python-version: ${{ matrix.python }}
793795
architecture: x86
@@ -835,7 +837,7 @@ jobs:
835837
- uses: actions/checkout@v3
836838

837839
- name: Setup Python ${{ matrix.python }}
838-
uses: actions/setup-python@v3
840+
uses: actions/setup-python@v4
839841
with:
840842
python-version: ${{ matrix.python }}
841843

.github/workflows/configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141

4242
- name: Setup Python 3.7
43-
uses: actions/setup-python@v3
43+
uses: actions/setup-python@v4
4444
with:
4545
python-version: 3.7
4646
architecture: ${{ matrix.arch }}

.github/workflows/format.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@v3
24-
- uses: actions/setup-python@v3
24+
- uses: actions/setup-python@v4
25+
with:
26+
python-version: "3.x"
2527
- name: Add matchers
2628
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
2729
- uses: pre-commit/[email protected]

.github/workflows/pip.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828

2929
- name: Setup 🐍 3.6
30-
uses: actions/setup-python@v3
30+
uses: actions/setup-python@v4
3131
with:
3232
python-version: 3.6
3333

@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v3
5050

5151
- name: Setup 🐍 3.8
52-
uses: actions/setup-python@v3
52+
uses: actions/setup-python@v4
5353
with:
5454
python-version: 3.8
5555

@@ -90,7 +90,9 @@ jobs:
9090
needs: [packaging]
9191

9292
steps:
93-
- uses: actions/setup-python@v3
93+
- uses: actions/setup-python@v4
94+
with:
95+
python-version: "3.x"
9496

9597
# Downloads all to directories matching the artifact names
9698
- uses: actions/download-artifact@v3

.github/workflows/upstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v3
2323

2424
- name: Setup Python 3.11
25-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v4
2626
with:
2727
python-version: "3.11-dev"
2828

0 commit comments

Comments
 (0)