Skip to content

Commit 349c5ff

Browse files
Bump actions/upload-artifact from 4 to 5 (#291)
* Bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Bump actions/download-artifact from 5 to 6 (#292) Bumps [actions/download-artifact](https://github.com/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/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f873509 commit 349c5ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- shell: bash
8888
run: |
8989
cp ./lcov.info ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
90-
- uses: actions/upload-artifact@v4
90+
- uses: actions/upload-artifact@v5
9191
with:
9292
name: lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}
9393
path: ./lcov-${{ matrix.os }}-${{ matrix.version }}-${{ github.run_id }}.info
@@ -110,7 +110,7 @@ jobs:
110110
# At first, we check out the repository and download all artifacts
111111
# (and list files for debugging).
112112
- uses: actions/checkout@v5
113-
- uses: actions/download-artifact@v5
113+
- uses: actions/download-artifact@v6
114114
- run: ls -R
115115
# Next, we merge the individual coverage files and upload
116116
# the combined results to Coveralls.
@@ -134,7 +134,7 @@ jobs:
134134
github-token: ${{ secrets.GITHUB_TOKEN }}
135135
path-to-lcov: ./lcov.info
136136
# Upload merged coverage data as artifact for debugging
137-
- uses: actions/upload-artifact@v4
137+
- uses: actions/upload-artifact@v5
138138
with:
139139
name: lcov
140140
path: ./lcov.info

0 commit comments

Comments
 (0)