Skip to content

Commit 41ccd8a

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6.0.2 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@de0fac2...9c091bb) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a309ff8...ece7cb0) Updates `codecov/codecov-action` from 6.0.1 to 7.0.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@e79a696...fb8b358) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c4533cb commit 41ccd8a

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ jobs:
7070
} >> "$GITHUB_STEP_SUMMARY"
7171
7272
- name: "Checkout python/release-tools"
73-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
73+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7474
with:
7575
persist-credentials: false
7676

7777
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
78-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
78+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7979
with:
8080
persist-credentials: false
8181
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -90,7 +90,7 @@ jobs:
9090
fi
9191
9292
- name: "Setup Python"
93-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
93+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
9494
with:
9595
python-version: 3.12
9696

@@ -119,20 +119,20 @@ jobs:
119119
- verify-input
120120
steps:
121121
- name: "Checkout python/release-tools"
122-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
122+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
123123
with:
124124
persist-credentials: false
125125

126126
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
127-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
127+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
128128
with:
129129
persist-credentials: false
130130
repository: "${{ env.GIT_REMOTE }}/cpython"
131131
ref: "v${{ env.CPYTHON_RELEASE }}"
132132
path: "cpython"
133133

134134
- name: "Setup Python"
135-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
135+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
136136
with:
137137
python-version: 3.12
138138

@@ -161,14 +161,14 @@ jobs:
161161
if: fromJSON(needs.verify-input.outputs.build-docs)
162162
steps:
163163
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
164-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
164+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
165165
with:
166166
persist-credentials: false
167167
repository: "${{ env.GIT_REMOTE }}/cpython"
168168
ref: "v${{ env.CPYTHON_RELEASE }}"
169169

170170
- name: "Setup Python"
171-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
171+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
172172
with:
173173
python-version: 3.12
174174

@@ -231,7 +231,7 @@ jobs:
231231
name: docs
232232

233233
- name: "Set up Python"
234-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
234+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
235235
with:
236236
python-version: "3.x"
237237

@@ -276,7 +276,7 @@ jobs:
276276
triplet: ${{ matrix.arch }}-linux-android
277277
steps:
278278
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
279-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
279+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
280280
with:
281281
persist-credentials: false
282282
repository: "${{ env.GIT_REMOTE }}/cpython"
@@ -311,7 +311,7 @@ jobs:
311311
timeout-minutes: 60
312312
steps:
313313
- name: "Checkout ${{ env.GIT_REMOTE }}/cpython"
314-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
314+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
315315
with:
316316
persist-credentials: false
317317
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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1717
with:
1818
persist-credentials: false
19-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
19+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2020
with:
2121
python-version: "3.x"
2222
cache: pip

.github/workflows/test.yml

Lines changed: 3 additions & 3 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
20+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2121
with:
2222
persist-credentials: false
23-
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
23+
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: pip
@@ -31,6 +31,6 @@ jobs:
3131
tox -e py
3232
3333
- name: Upload coverage
34-
uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1
34+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
3535
with:
3636
token: ${{ secrets.CODECOV_ORG_TOKEN }}

0 commit comments

Comments
 (0)