Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make -C web build-kotsadm

- name: Upload web artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: web
path: ./web/dist
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
GIT_TAG: ${{ needs.generate-tag.outputs.tag }}
run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make kots

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: kots
path: ./bin/kots
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
${{ runner.os }}-go-e2e-
- run: make -C e2e build deps
- run: docker save e2e-deps -o e2e/bin/e2e-deps.tar
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: e2e
path: e2e/bin/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: trivy fs --scanners license --skip-dirs ".github" --skip-files "package-lock.json,bin/scan-images/package-lock.json" . | tee license-report.txt

- name: Upload license report artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: license-report
path: license-report.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:

- name: Upload playwright report
id: upload-playwright-report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: ${{ github.job }}-${{ matrix.test.name }}-playwright-report
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
GIT_TAG: ${{ needs.generate-tag.outputs.tag }}
run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make -C web deps build-kotsadm
- name: Upload web artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: web
path: ./web/dist
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
SCOPE_DSN_PUBLIC: ""
run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make ci-test kots
- name: Upload Go API artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kots
path: ./bin/kots
Expand Down Expand Up @@ -215,13 +215,13 @@ jobs:
run: mapfile -t envs < <(grep -v '#.*' < .image.env) && export "${envs[@]}" && make kotsadm-bundle-nominio

- name: Upload kotsadm bundle
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kotsadm-bundle
path: kotsadm-bundle

- name: Upload kotsadm bundle without minio
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kotsadm-bundle-nominio
path: kotsadm-bundle-nominio
Expand Down
Loading