Skip to content

Commit 085ed27

Browse files
Bump the github-actions group with 5 updates
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action) | `6494290850a5098c2836298dad8f11082b4ceaa9` | `14efb884fd6f322dca843a946ce2125a55c12e1d` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `6` | | [zizmorcore/zizmor-action](https://github.com/zizmorcore/zizmor-action) | `0.2.0` | `0.3.0` | Updates `py-cov-action/python-coverage-comment-action` from 6494290850a5098c2836298dad8f11082b4ceaa9 to 14efb884fd6f322dca843a946ce2125a55c12e1d - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](py-cov-action/python-coverage-comment-action@6494290...14efb88) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) Updates `zizmorcore/zizmor-action` from 0.2.0 to 0.3.0 - [Release notes](https://github.com/zizmorcore/zizmor-action/releases) - [Commits](zizmorcore/zizmor-action@e673c39...e639db9) --- updated-dependencies: - dependency-name: py-cov-action/python-coverage-comment-action dependency-version: 14efb884fd6f322dca843a946ce2125a55c12e1d dependency-type: direct:production dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: zizmorcore/zizmor-action dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ed400af commit 085ed27

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# DO NOT run actions/checkout here, for security reasons
2828
# For details, refer to https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
2929
- name: Post comment
30-
uses: py-cov-action/python-coverage-comment-action@6494290850a5098c2836298dad8f11082b4ceaa9 # v3
30+
uses: py-cov-action/python-coverage-comment-action@14efb884fd6f322dca843a946ce2125a55c12e1d # v3
3131
with:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
persist-credentials: false
2121
- name: Set up Python

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- 3306:3306
3838

3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
with:
4242
persist-credentials: false
4343

@@ -78,7 +78,7 @@ jobs:
7878
COVERAGE_FILE: ".coverage.mysql.${{ matrix.python-version }}"
7979

8080
- name: Store coverage file
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: coverage-mysql-${{ matrix.python-version }}
8484
path: .coverage.mysql.${{ matrix.python-version }}*
@@ -133,7 +133,7 @@ jobs:
133133
--health-retries 5
134134
135135
steps:
136-
- uses: actions/checkout@v5
136+
- uses: actions/checkout@v6
137137
with:
138138
persist-credentials: false
139139

@@ -178,7 +178,7 @@ jobs:
178178
COVERAGE_FILE: ".coverage.${{ matrix.database }}.${{ matrix.python-version }}"
179179

180180
- name: Store coverage file
181-
uses: actions/upload-artifact@v4
181+
uses: actions/upload-artifact@v5
182182
with:
183183
name: coverage-${{ matrix.database }}-${{ matrix.python-version }}
184184
path: .coverage.${{ matrix.database }}.${{ matrix.python-version }}*
@@ -193,7 +193,7 @@ jobs:
193193
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
194194

195195
steps:
196-
- uses: actions/checkout@v5
196+
- uses: actions/checkout@v6
197197
with:
198198
persist-credentials: false
199199

@@ -231,7 +231,7 @@ jobs:
231231
COVERAGE_FILE: ".coverage.sqlite.${{ matrix.python-version }}"
232232

233233
- name: Store coverage file
234-
uses: actions/upload-artifact@v4
234+
uses: actions/upload-artifact@v5
235235
with:
236236
name: coverage-sqlite-${{ matrix.python-version }}
237237
path: .coverage.sqlite.${{ matrix.python-version }}*
@@ -243,7 +243,7 @@ jobs:
243243
fail-fast: false
244244

245245
steps:
246-
- uses: actions/checkout@v5
246+
- uses: actions/checkout@v6
247247
with:
248248
persist-credentials: false
249249

@@ -286,26 +286,26 @@ jobs:
286286
pull-requests: write
287287
contents: write
288288
steps:
289-
- uses: actions/checkout@v4
289+
- uses: actions/checkout@v6
290290
with:
291291
# Persist the credentials because coverage_comment needs them too.
292292
persist-credentials: true
293293

294-
- uses: actions/download-artifact@v4
294+
- uses: actions/download-artifact@v6
295295
id: download
296296
with:
297297
pattern: coverage-*
298298
merge-multiple: true
299299

300300
- name: Coverage comment
301301
id: coverage_comment
302-
uses: py-cov-action/python-coverage-comment-action@6494290850a5098c2836298dad8f11082b4ceaa9 # v3
302+
uses: py-cov-action/python-coverage-comment-action@14efb884fd6f322dca843a946ce2125a55c12e1d # v3
303303
with:
304304
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
305305
MERGE_COVERAGE_FILES: true
306306

307307
- name: Store Pull Request comment to be posted
308-
uses: actions/upload-artifact@v4
308+
uses: actions/upload-artifact@v5
309309
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
310310
with:
311311
name: python-coverage-comment-action

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
actions: read # only needed for private repos
1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2222
with:
2323
persist-credentials: false
2424

2525
- name: Run zizmor 🌈
26-
uses: zizmorcore/zizmor-action@e673c3917a1aef3c65c972347ed84ccd013ecda4 # v0.2.0
26+
uses: zizmorcore/zizmor-action@e639db99335bc9038abc0e066dfcd72e23d26fb4 # v0.3.0

0 commit comments

Comments
 (0)