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
2 changes: 1 addition & 1 deletion .github/workflows/component-changelog-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Upload CHANGELOG.md artifact
if: github.ref == 'refs/heads/main' && needs.filter-commit-changes.outputs[matrix.component] == 'true'
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: unreleased-changelog-${{ matrix.artifact-name || matrix.folder-name }}
path: ${{ matrix.folder-name }}/CHANGELOG.md
2 changes: 1 addition & 1 deletion .github/workflows/maru-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
./gradlew :maru:app:installDist
- name: Upload distribution artifact
if: ${{ inputs.upload_dist_artifact }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: maru-distribution
path: maru/app/build/install/app/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maru-chaos-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Store reports and pod logs
if: failure()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: chaos-test-reports-and-logs
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maru-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
echo "E2E_TESTS_RESULT: ${{ steps.run_e2e_tests.outcome }}"

- name: Archive debug logs
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ failure() && inputs.e2e-tests-logs-dump }}
with:
name: end-2-end-debug-logs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
add-paths: ${{ inputs.folder-name }}/CHANGELOG.md

- name: Upload CHANGELOG.md artifact
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
if: ${{ inputs.upload_changelog }}
with:
name: prepended-changelog-${{ inputs.component-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-notify-e2e-runtime-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Upload HTML report
if: ${{ fromJSON(steps.summary.outputs.json).totalRuns > 0 }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: e2e-runtime-report
path: e2e/e2e-runtime-report.html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/slack-notify-failed-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ jobs:
- name: Upload analysis artifact
id: upload_artifact
if: ${{ always() }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
continue-on-error: true
with:
name: ai-failure-analysis
Expand All @@ -222,7 +222,7 @@ jobs:

- name: Upload Claude execution log
if: ${{ always() && steps.claude.outputs.execution_file != '' }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
continue-on-error: true
with:
name: ai-execution-log
Expand Down
Loading