10000 Bump actions/setup-python from 3 to 4 · codingjoe/django-mail-auth@8ad7f11 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8ad7f11

Browse files
dependabot[bot]codingjoe
authored andcommitted
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] <support@github.com>
1 parent 4e0038a commit 8ad7f11

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,10 @@ jobs:
2020
- "pydocstyle ."
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/setup-python@v3
2423
- uses: actions/checkout@v3
24+
- uses: actions/setup-python@v4
2525
with:
26+
python-version: "3.10"
2627
cache: 'pip'
2728
cache-dependency-path: 'requirements.txt'
2829
- run: python -m pip install -r requirements.txt
@@ -32,7 +33,7 @@ jobs:
3233
runs-on: ubuntu-latest
3334
steps:
3435
- run: sudo apt install -y gettext
35-
- uses: actions/setup-python@v3
36+
- uses: actions/setup-python@v4
3637
- uses: actions/setup-node@v3.3.0
3738
with:
3839
node-version: 'lts/*'
@@ -48,7 +49,7 @@ jobs:
4849
docs:
4950
runs-on: ubuntu-latest
5051
steps:
51-
- uses: actions/setup-python@v3
52+
- uses: actions/setup-python@v4
5253
- uses: actions/checkout@v3
5354
with:
5455
cache: 'pip'
@@ -69,7 +70,7 @@ jobs:
6970
- "3.10"
7071
steps:
7172
- name: Set up Python ${{ matrix.python-version }}
72-
uses: actions/setup-python@v3
73+
uses: actions/setup-python@v4
7374
with:
7475
python-version: ${{ matrix.python-version }}
7576
- run: python -m pip install --upgrade pip setuptools wheel
@@ -90,7 +91,7 @@ jobs:
9091
python-version: ["3.10"]
9192
steps:
9293
- name: Set up Python ${{ matrix.python-version }}
93-
uses: actions/setup-python@v3
94+
uses: actions/setup-python@v4
9495
with:
9596
python-version: ${{ matrix.python-version }}
9697
- run: python -m pip install --upgrade pip setuptools wheel
@@ -122,7 +123,7 @@ jobs:
122123
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
123124
steps:
124125
- name: Set up Python ${{ matrix.python-version }}
125-
uses: actions/setup-python@v3
126+
uses: actions/setup-python@v4
126127
with:
127128
python-version: ${{ matrix.python-version }}
128129
- run: python -m pip install --upgrade pip setuptools wheel

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v3
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: "3.10"
1416
- name: Install Python dependencies
1517
run: python -m pip install --upgrade pip setuptools wheel twine
1618
- name: Build dist packages

0 commit comments

Comments
 (0)
0