Skip to content

Commit fcbd238

Browse files
dependabot[bot]marcoSanti
authored andcommitted
Bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...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 c06168e commit fcbd238

3 files changed

Lines changed: 6 additions & 10 deletions

File tree

.github/workflows/ci-test.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ jobs:
6767
upload-to-codecov:
6868
name: "compute Codecov"
6969
needs: [ "unit-tests"]
70-
if: ${{ needs.check-tag-existance.outputs.exists == 'false' }}
7170
runs-on: ubuntu-latest
7271
steps:
7372
- uses: actions/checkout@v4
@@ -108,7 +107,7 @@ jobs:
108107
../build
109108
110109
- name: Upload coverage artifact
111-
uses: actions/upload-artifact@v4
110+
uses: actions/upload-artifact@v7
112111
with:
113112
name: coverage
114113
path: coverage.xml
@@ -126,7 +125,6 @@ jobs:
126125
build-documentation:
127126
name: "Build Doxygen documentation"
128127
runs-on: ubuntu-latest
129-
if: ${{ needs.check-tag-existance.outputs.exists == 'false' }}
130128
needs: upload-to-codecov
131129
steps:
132130
- uses: actions/checkout@v4
@@ -147,7 +145,6 @@ jobs:
147145
codespell-check:
148146
name: "Check codespell conformance"
149147
needs: upload-to-codecov
150-
if: ${{ needs.check-tag-existance.outputs.exists == 'false' }}
151148
runs-on: ubuntu-latest
152149
steps:
153150
- uses: actions/checkout@v4
@@ -157,7 +154,6 @@ jobs:
157154
format-check:
158155
name: "Check ${{ matrix.path }} clang-format conformance"
159156
needs: upload-to-codecov
160-
if: ${{ needs.check-tag-existance.outputs.exists == 'false' }}
161157
runs-on: ubuntu-latest
162158
strategy:
163159
matrix:

.github/workflows/python-bindings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: "Upload coverage report"
8484
if: ${{ startsWith(matrix.on, 'ubuntu-') }}
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v7
8686
with:
8787
name: ${{ format('{0}-{1}-tests', matrix.on, matrix.python) }}
8888
path: ./coverage.xml

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: make pdf
4949
- name: "Upload pdf documentation"
5050
if: success()
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v7
5252
with:
5353
path: "doxygen/documentation*.pdf"
5454
name: "documentation.pdf"
@@ -115,7 +115,7 @@ jobs:
115115
116116
- name: "Upload built RISC-V wheel"
117117
if: success()
118-
uses: actions/upload-artifact@v4
118+
uses: actions/upload-artifact@v7
119119
with:
120120
name: "${{ format('py_capio_cl_ubunturv64_python_{0}.whl', matrix.python) }}"
121121
path: "dist/${{ format('py_capio_cl_ubunturv64_python_{0}.whl', matrix.python) }}"
@@ -182,7 +182,7 @@ jobs:
182182
run: |
183183
cibuildwheel --output-dir wheelhouse
184184
185-
- uses: actions/upload-artifact@v4
185+
- uses: actions/upload-artifact@v7
186186
with:
187187
name: wheels-${{ matrix.os }}
188188
path: wheelhouse/*.whl
@@ -203,7 +203,7 @@ jobs:
203203
python -m pip install --upgrade build
204204
python -m build --sdist
205205
206-
- uses: actions/upload-artifact@v4
206+
- uses: actions/upload-artifact@v7
207207
with:
208208
name: sdist
209209
path: dist/*.tar.gz

0 commit comments

Comments
 (0)