Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: downgrade download artifact action #2771

Merged
merged 3 commits into from
Jan 9, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/actions/deploy-keptn-on-cluster/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
check-latest: true

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
path: ~/download/artifacts

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ jobs:
outputs: type=docker,dest=/tmp/${{ matrix.config.name }}-image.tar

- name: Upload image as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.config.name }}-image.tar
path: /tmp/${{ matrix.config.name }}-image.tar
Expand All @@ -185,7 +185,7 @@ jobs:
run: echo "" > tag

- name: Upload tag for tests
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: dev-${{ env.DATETIME }}
path: tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Upload ${{ matrix.config.name }} cluster logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs-e2e-tests-${{ matrix.config.name }}
path: .github/scripts/logs
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Upload cluster logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs-integration-tests-${{ inputs.scheduling-gates }}-${{ inputs.allowed-namespaces }}
path: .github/scripts/logs
4 changes: 2 additions & 2 deletions .github/workflows/load-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

- name: Upload results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: load-tests-results
path: ./collected-metrics
Expand All @@ -65,7 +65,7 @@ jobs:

- name: Upload cluster logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs-load-tests
path: .github/scripts/logs
2 changes: 1 addition & 1 deletion .github/workflows/performance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- name: Upload cluster logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: logs-performance-tests
path: .github/scripts/logs
10 changes: 5 additions & 5 deletions .github/workflows/security-scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:
path: ./dist

- name: Upload tag
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: tag
path: |
./dist/dev-*/

- name: Upload images
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: images
path: |
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

- name: Download tag
id: download_manifests
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: tag
path: tag
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:

- name: Upload KICS results
if: always() && matrix.tool == 'kics'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: kics-results
path: results.json
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:

- name: Download images
id: download_images
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: images
path: images
Expand Down
Loading