Skip to content

Commit a47bb78

Browse files
Bump actions/upload-artifact from 6 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dd667c7 commit a47bb78

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ jobs:
823823
--xml --output ${{ matrix.codecov }}.xml
824824
825825
- name: Upload coverage report artifact
826-
uses: actions/upload-artifact@v6
826+
uses: actions/upload-artifact@v7
827827
if: matrix.codecov
828828
with:
829829
name: ${{ matrix.name }} (coverage)
@@ -851,7 +851,7 @@ jobs:
851851
UBSAN_OPTIONS: ${{ matrix.ubsan-options || 'verbosity=0' }}:print_stacktrace=1:abort_on_error=1:halt_on_error=1
852852

853853
- name: Upload build errors
854-
uses: actions/upload-artifact@v6
854+
uses: actions/upload-artifact@v7
855855
if: failure()
856856
with:
857857
name: ${{ matrix.name }} (cmake)

.github/workflows/configure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ jobs:
290290
working-directory: ${{ matrix.build-dir }}
291291

292292
- name: Upload build errors
293-
uses: actions/upload-artifact@v6
293+
uses: actions/upload-artifact@v7
294294
if: failure()
295295
with:
296296
name: ${{ matrix.name }} (configure)

.github/workflows/fuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
dry-run: false
3232

3333
- name: Upload Crash
34-
uses: actions/upload-artifact@v6
34+
uses: actions/upload-artifact@v7
3535
if: failure()
3636
with:
3737
name: artifacts

.github/workflows/link.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: cmake --build native -j2 --config Release
3434

3535
- name: Upload build errors
36-
uses: actions/upload-artifact@v6
36+
uses: actions/upload-artifact@v7
3737
if: failure()
3838
with:
3939
name: Link zlib (CMake Logs)
@@ -64,7 +64,7 @@ jobs:
6464
run: cmake --build native -j2 --config Release
6565

6666
- name: Upload build errors
67-
uses: actions/upload-artifact@v6
67+
uses: actions/upload-artifact@v7
6868
if: failure()
6969
with:
7070
name: Link zlib-ng compat (CMake Logs)

.github/workflows/osb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
run: chmod -R +w .
6262

6363
- name: Upload build errors
64-
uses: actions/upload-artifact@v6
64+
uses: actions/upload-artifact@v7
6565
if: failure()
6666
with:
6767
name: ${{ matrix.name }}

.github/workflows/pigz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ jobs:
116116
--xml --output ${{ matrix.codecov }}.xml
117117
118118
- name: Upload coverage report artifact
119-
uses: actions/upload-artifact@v6
119+
uses: actions/upload-artifact@v7
120120
if: matrix.codecov
121121
with:
122122
name: ${{ matrix.name }} (coverage)
123123
path: ${{ matrix.codecov }}.xml
124124
retention-days: 1
125125

126126
- name: Upload build errors
127-
uses: actions/upload-artifact@v6
127+
uses: actions/upload-artifact@v7
128128
if: failure()
129129
with:
130130
name: ${{ matrix.name }} (cmake)

.github/workflows/pkgcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ jobs:
180180
LDFLAGS: ${{ matrix.ldflags }}
181181

182182
- name: Upload build errors
183-
uses: actions/upload-artifact@v6
183+
uses: actions/upload-artifact@v7
184184
if: failure()
185185
with:
186186
name: ${{ matrix.name }}

0 commit comments

Comments
 (0)