Skip to content

Commit a88987d

Browse files
dependabot[bot]codingjoe
authored andcommitted
Bump actions/setup-python from 4 to 5
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- 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 47ecddc commit a88987d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- pydocstyle .
2020
steps:
2121
- uses: actions/checkout@v4
22-
- uses: actions/setup-python@v4
22+
- uses: actions/setup-python@v5
2323
with:
2424
python-version: "3.x"
2525
cache: 'pip'
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@v4
34-
- uses: actions/setup-python@v4
34+
- uses: actions/setup-python@v5
3535
with:
3636
python-version: "3.x"
3737
- run: python -m pip install --upgrade pip build wheel twine readme-renderer
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v4
55-
- uses: actions/setup-python@v4
55+
- uses: actions/setup-python@v5
5656
with:
5757
python-version: "3.10"
5858
- run: sudo apt-get install -y gettext graphviz
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
steps:
7979
- uses: actions/checkout@v4
80-
- uses: actions/setup-python@v4
80+
- uses: actions/setup-python@v5
8181
with:
8282
python-version: ${{ matrix.python-version }}
8383
- run: python -m pip install Django~="${{ matrix.django-version }}.0"
@@ -103,7 +103,7 @@ jobs:
103103
mkdir bin
104104
curl -O https://chromedriver.storage.googleapis.com/`curl -s https://chromedriver.storage.googleapis.com/LATEST_RELEASE`/chromedriver_linux64.zip
105105
unzip chromedriver_linux64.zip -d bin
106-
- uses: actions/setup-python@v4
106+
- uses: actions/setup-python@v5
107107
with:
108108
python-version: ${{ matrix.python-version }}
109109
- run: python -m pip install Django

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- uses: actions/setup-python@v4
12+
- uses: actions/setup-python@v5
1313
with:
1414
python-version: "3.x"
1515
- run: python -m pip install --upgrade pip build wheel twine
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v4
2727
- uses: actions/setup-node@v4
28-
- uses: actions/setup-python@v4
28+
- uses: actions/setup-python@v5
2929
with:
3030
python-version: "3.x"
3131
- run: python -m pip install --upgrade setuptools_scm

0 commit comments

Comments
 (0)