Skip to content

Commit 5586a32

Browse files
build(deps): bump actions/setup-python from 4.7.0 to 4.7.1 (#785)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.7.0 to 4.7.1. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@61a6322...65d7f2d) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Cameron <asc@tetsuo.sh>
1 parent f49f1a2 commit 5586a32

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
3131

32-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
32+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
3333
with:
3434
python-version: ${{ matrix.conf.py }}
3535
cache: "pip"
@@ -83,7 +83,7 @@ jobs:
8383
steps:
8484
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v3.2.0
8585

86-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
86+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
8787
with:
8888
python-version: '3.x'
8989

.github/workflows/conformance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1515

16-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
16+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
1717
with:
1818
python-version: "3.x"
1919
cache: "pip"

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1313

14-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
14+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
1515
with:
1616
# NOTE: We use 3.10+ typing syntax via future, which pdoc only
1717
# understands if it's actually run with Python 3.10 or newer.

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1414

1515
# NOTE: We intentionally lint against our minimum supported Python.
16-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
16+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
1717
with:
1818
python-version: "3.8"
1919
cache: "pip"
@@ -32,7 +32,7 @@ jobs:
3232

3333
# NOTE: We intentionally check `--help` rendering against our minimum Python,
3434
# since it changes slightly between Python versions.
35-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
35+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
3636
with:
3737
python-version: "3.8"
3838
cache: "pip"
@@ -63,7 +63,7 @@ jobs:
6363
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
6464

6565
# NOTE: We intentionally check test certificates against our minimum supported Python.
66-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
66+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
6767
with:
6868
python-version: "3.8"
6969
cache: "pip"

.github/workflows/pin-requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
6969
git config user.name "github-actions[bot]"
7070
71-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
71+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
7272
with:
7373
python-version-file: install/.python-version
7474
cache: "pip"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
2121

22-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
22+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
2323
with:
2424
python-version: "3.x"
2525
cache: "pip"

.github/workflows/requirements.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
ref: ${{ env.SIGSTORE_REF }}
3737

38-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
38+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
3939
name: Install Python ${{ matrix.python_version }}
4040
with:
4141
python-version: ${{ matrix.python_version }}

.github/workflows/staging-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
2222

23-
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
23+
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
2424
with:
2525
python-version: "3.x"
2626
cache: "pip"

0 commit comments

Comments
 (0)