Skip to content

Commit 3add01d

Browse files
Bump the actions-deps group with 2 updates (#458)
Bumps the actions-deps 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 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 73d7e69 commit 3add01d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
with:
108108
subject-path: output/artifacts/*
109109
- name: Archive production artifacts
110-
uses: actions/upload-artifact@v5
110+
uses: actions/upload-artifact@v6
111111
with:
112112
name: binary-${{ matrix.os }}-${{ github.sha }}-${{ github.run_id }}
113113
path: output/artifacts
@@ -176,7 +176,7 @@ jobs:
176176
steps:
177177
- uses: actions/checkout@v6
178178
- name: Download build binaries
179-
uses: actions/download-artifact@v6
179+
uses: actions/download-artifact@v7
180180
with:
181181
path: assets/
182182
pattern: binary-*

.github/workflows/comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Download artifacts
61-
uses: actions/download-artifact@v6
61+
uses: actions/download-artifact@v7
6262
with:
6363
name: results
6464
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/runner.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: |
6969
coverage run --data-file=.coverage.${{ matrix.os }}.${{ matrix.python-version }} -m pytest tests
7070
- name: Upload coverage data
71-
uses: actions/upload-artifact@v5
71+
uses: actions/upload-artifact@v6
7272
with:
7373
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
7474
path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}
@@ -90,7 +90,7 @@ jobs:
9090
python-version: 3.12
9191
cache: 'pip'
9292
- name: Download coverage data
93-
uses: actions/download-artifact@v6
93+
uses: actions/download-artifact@v7
9494
- name: Merge coverage data
9595
id: merge
9696
run: |
@@ -99,7 +99,7 @@ jobs:
9999
coverage combine coverage*
100100
coverage html
101101
- name: Upload final coverage html report
102-
uses: actions/upload-artifact@v5
102+
uses: actions/upload-artifact@v6
103103
id: upload-html
104104
with:
105105
name: coverage-html-report
@@ -116,7 +116,7 @@ jobs:
116116
} >> results/coverage-text-report
117117
echo ${{ github.event.number }} > results/issue_number
118118
- name: Upload final coverage text report
119-
uses: actions/upload-artifact@v5
119+
uses: actions/upload-artifact@v6
120120
with:
121121
name: results
122122
path: results/

0 commit comments

Comments
 (0)