Skip to content

Commit 89a4a52

Browse files
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] <[email protected]>
1 parent 704337b commit 89a4a52

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,14 +126,14 @@ jobs:
126126
if: always()
127127
run: sha256sum ola-*.tar.gz
128128
- name: Upload source tree artifact
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v5
130130
if: always()
131131
with:
132132
name: ola-${{ matrix.id }}-source-tree
133133
path: ola-${{ matrix.id }}-source-tree.tar.gz
134134
- name: Upload built artifact
135135
if: matrix.task == 'distcheck' || matrix.task == 'dist'
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v5
137137
with:
138138
name: ola-${{ matrix.id }}-dist
139139
path: |
@@ -154,7 +154,7 @@ jobs:
154154
flag-name: ${{ matrix.id }}
155155
- name: Upload coverage artifacts
156156
if: always() && matrix.task == 'coverage'
157-
uses: actions/upload-artifact@v4
157+
uses: actions/upload-artifact@v5
158158
with:
159159
name: ola-${{ matrix.id }}-coverage
160160
path: coverage/

.github/workflows/debian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
shell: bash
6060
run: find . -type f -exec sha256sum {} \;
6161
working-directory: built
62-
- uses: actions/upload-artifact@v4
62+
- uses: actions/upload-artifact@v5
6363
if: always()
6464
with:
6565
name: ola-built-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}
@@ -93,7 +93,7 @@ jobs:
9393
run: apt-get -y install autopkgtest
9494
- name: Test
9595
run: autopkgtest --output-dir=test-output built/*ges -- null
96-
- uses: actions/upload-artifact@v4
96+
- uses: actions/upload-artifact@v5
9797
if: always() # Always upload the test output, even on failed tests
9898
with:
9999
name: ola-test-output-debian-${{ matrix.image_tag }}-${{ matrix.architecture }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
tar --exclude=ola-debian-stable-built-source-tree.tar.gz --exclude=.git -cvzf ola-debian-stable-built-source-tree.tar.gz .
6464
- name: SHA256 artifact archive
6565
run: sha256sum ola-debian-stable-built-source-tree.tar.gz
66-
- uses: actions/upload-artifact@v4
66+
- uses: actions/upload-artifact@v5
6767
with:
6868
name: ola-debian-stable-built-source-tree
6969
path: ola-debian-stable-built-source-tree.tar.gz

0 commit comments

Comments
 (0)