Skip to content

Commit 971a2d1

Browse files
Bump the actions group with 2 updates (#340)
Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6.0.1...v6.0.2) Updates `actions/setup-python` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6.1.0...v6.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 35e8499 commit 971a2d1

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/build-release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ jobs:
6161
echo "cpython_release: $CPYTHON_RELEASE"
6262
6363
- name: "Checkout python/release-tools"
64-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
64+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6565
with:
6666
persist-credentials: false
6767

6868
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
69-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
69+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7070
with:
7171
persist-credentials: false
7272
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -81,7 +81,7 @@ jobs:
8181
fi
8282
8383
- name: "Setup Python"
84-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
84+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
8585
with:
8686
python-version: 3.12
8787

@@ -97,20 +97,20 @@ jobs:
9797
- verify-input
9898
steps:
9999
- name: "Checkout python/release-tools"
100-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
100+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
101101
with:
102102
persist-credentials: false
103103

104104
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
105-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
105+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
106106
with:
107107
persist-credentials: false
108108
repository: "${{ env.GIT_REMOTE }}/cpython"
109109
ref: "v${{ env.CPYTHON_RELEASE }}"
110110
path: "cpython"
111111

112112
- name: "Setup Python"
113-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
113+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
114114
with:
115115
python-version: 3.12
116116

@@ -139,14 +139,14 @@ jobs:
139139
if: fromJSON(needs.verify-input.outputs.build-docs)
140140
steps:
141141
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
142-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
142+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
143143
with:
144144
persist-credentials: false
145145
repository: "${{ env.GIT_REMOTE }}/cpython"
146146
ref: "v${{ env.CPYTHON_RELEASE }}"
147147

148148
- name: "Setup Python"
149-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
149+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
150150
with:
151151
python-version: 3.12
152152

@@ -209,7 +209,7 @@ jobs:
209209
name: docs
210210

211211
- name: "Set up Python"
212-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
212+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
213213
with:
214214
python-version: "3.x"
215215

@@ -254,7 +254,7 @@ jobs:
254254
triplet: ${{ matrix.arch }}-linux-android
255255
steps:
256256
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
257-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
257+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
258258
with:
259259
persist-credentials: false
260260
repository: "${{ env.GIT_REMOTE }}/cpython"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v6.0.1
16+
- uses: actions/checkout@v6.0.2
1717
with:
1818
persist-credentials: false
19-
- uses: actions/setup-python@v6.1.0
19+
- uses: actions/setup-python@v6.2.0
2020
with:
2121
python-version: "3.x"
2222
cache: pip

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
python-version: ["3.12", "3.13", "3.14"]
1818
os: [macos-latest, ubuntu-latest]
1919
steps:
20-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
with:
2222
persist-credentials: false
23-
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
23+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: pip

0 commit comments

Comments
 (0)