Skip to content

Commit a444e5c

Browse files
Bump the github-actions group with 2 updates (#2320)
Bumps the github-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b7c566a...bbbca2d) Updates `actions/download-artifact` from 7.0.0 to 8.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@37930b1...70fc10c) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4c70a42 commit a444e5c

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Build a binary wheel and a source tarball
2929
run: python3 -m build
3030
- name: Store the distribution packages
31-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
31+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
3232
with:
3333
name: python-package-distributions
3434
path: dist/
@@ -47,7 +47,7 @@ jobs:
4747
id-token: write # IMPORTANT: mandatory for trusted publishing
4848
steps:
4949
- name: Download all the dists
50-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
50+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
5151
with:
5252
name: python-package-distributions
5353
path: dist/
@@ -68,7 +68,7 @@ jobs:
6868

6969
steps:
7070
- name: Download all the dists
71-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
71+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
7272
with:
7373
name: python-package-distributions
7474
path: dist/
@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
- name: Download all the dists
116-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
116+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
117117
with:
118118
name: python-package-distributions
119119
path: dist/

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
COVERAGE_FILE: ".coverage.mysql.${{ matrix.python-version }}"
8383

8484
- name: Store coverage file
85-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
85+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
8686
with:
8787
name: coverage-mysql-${{ matrix.python-version }}
8888
path: .coverage.mysql.${{ matrix.python-version }}*
@@ -182,7 +182,7 @@ jobs:
182182
COVERAGE_FILE: ".coverage.${{ matrix.database }}.${{ matrix.python-version }}"
183183

184184
- name: Store coverage file
185-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
185+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
186186
with:
187187
name: coverage-${{ matrix.database }}-${{ matrix.python-version }}
188188
path: .coverage.${{ matrix.database }}.${{ matrix.python-version }}*
@@ -235,7 +235,7 @@ jobs:
235235
COVERAGE_FILE: ".coverage.sqlite.${{ matrix.python-version }}"
236236

237237
- name: Store coverage file
238-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
238+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
239239
with:
240240
name: coverage-sqlite-${{ matrix.python-version }}
241241
path: .coverage.sqlite.${{ matrix.python-version }}*
@@ -295,7 +295,7 @@ jobs:
295295
# Persist the credentials because coverage_comment needs them too.
296296
persist-credentials: true
297297

298-
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
298+
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
299299
id: download
300300
with:
301301
pattern: coverage-*
@@ -309,7 +309,7 @@ jobs:
309309
MERGE_COVERAGE_FILES: true
310310

311311
- name: Store Pull Request comment to be posted
312-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
312+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
313313
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
314314
with:
315315
name: python-coverage-comment-action

0 commit comments

Comments
 (0)