Skip to content

Commit 479952c

Browse files
deps(actions): 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>
1 parent b76e3bd commit 479952c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pull-request-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- name: Compress image to a file
6969
run: docker save linux-${{matrix.dist}}-${{env.arch}} | gzip > linux-${{matrix.dist}}-${{env.arch}}.tgz
7070
- name: Upload image artifact
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
with:
7373
name: linux-${{matrix.dist}}-${{env.arch}}
7474
path: linux-${{matrix.dist}}-${{env.arch}}.tgz
@@ -125,15 +125,15 @@ jobs:
125125
- name: Compress image to a file
126126
run: docker save che-code-${{env.arch}} | gzip > che-code-${{env.arch}}.tgz
127127
- name: Upload image artifact
128-
uses: actions/upload-artifact@v4
128+
uses: actions/upload-artifact@v5
129129
with:
130130
name: che-code-${{env.arch}}
131131
path: che-code-${{env.arch}}.tgz
132132
- name: Store PR info
133133
run: echo "${{ github.event.number }}" > PR_NUMBER
134134
# Upload PR number artifact only once
135135
- name: Upload PR Number artifact
136-
uses: actions/upload-artifact@v4
136+
uses: actions/upload-artifact@v5
137137
if: ${{ env.arch == 'amd64' }}
138138
with:
139139
name: pull-request-number

.github/workflows/smoke-test-pr-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,14 @@ jobs:
167167
168168
- name: Store e2e artifacts
169169
if: always()
170-
uses: actions/upload-artifact@v4
170+
uses: actions/upload-artifact@v5
171171
with:
172172
name: e2e-artifacts
173173
path: /tmp/tests
174174

175175
- name: Store k8s logs
176176
if: always()
177-
uses: actions/upload-artifact@v4
177+
uses: actions/upload-artifact@v5
178178
with:
179179
name: k8s-logs
180180
path: /tmp/devworkspace-happy-path-artifacts/admin-che-info

0 commit comments

Comments
 (0)