Skip to content

Commit 43d463e

Browse files
build(deps): bump the github-actions group with 2 updates (#183)
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 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - 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 ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c2386fa commit 43d463e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
if: >-
228228
always() &&
229229
(steps.test_report.outcome == 'success')
230-
uses: actions/upload-artifact@v4
230+
uses: actions/upload-artifact@v5
231231
with:
232232
name: coverage-${{ matrix.os }}
233233
path: |
@@ -245,7 +245,7 @@ jobs:
245245
fi
246246
247247
- name: Upload Artifacts
248-
uses: actions/upload-artifact@v4
248+
uses: actions/upload-artifact@v5
249249
with:
250250
name: build-${{ runner.os }}
251251
path: artifacts/
@@ -274,7 +274,7 @@ jobs:
274274
uses: actions/checkout@v5
275275

276276
- name: Download coverage artifact
277-
uses: actions/download-artifact@v5
277+
uses: actions/download-artifact@v6
278278
with:
279279
name: coverage-${{ matrix.build_os }}
280280
path: _coverage
@@ -315,19 +315,19 @@ jobs:
315315
runs-on: ubuntu-latest
316316
steps:
317317
- name: Download build artifact (Windows)
318-
uses: actions/download-artifact@v5
318+
uses: actions/download-artifact@v6
319319
with:
320320
name: build-Windows
321321
path: build-Windows
322322

323323
- name: Download build artifact (Linux)
324-
uses: actions/download-artifact@v5
324+
uses: actions/download-artifact@v6
325325
with:
326326
name: build-Linux
327327
path: build-Linux
328328

329329
- name: Download build artifact (macOS)
330-
uses: actions/download-artifact@v5
330+
uses: actions/download-artifact@v6
331331
with:
332332
name: build-macOS
333333
path: build-macOS

0 commit comments

Comments
 (0)