Skip to content

Commit 7eb11a7

Browse files
authored
Merge pull request #3167 from IntersectMBO/dependabot/github_actions/actions/upload-artifact-5
chore(deps): bump actions/upload-artifact from 4 to 5
2 parents 7aa9a6e + 1c59844 commit 7eb11a7

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/db_sync_docker_sync_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
118118
119119
- name: Upload Logs
120-
uses: actions/upload-artifact@v4
120+
uses: actions/upload-artifact@v5
121121
with:
122122
name: ${{ matrix.env }}-db-sync-logs
123123
path: |

.github/workflows/node_sync_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
echo "current branch3: $(git branch --show-current)"
9595
python sync_tests/node_write_sync_values_to_db.py -e ${{ matrix.env }}
9696
- name: generate artifacts
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
if: always()
9999
with:
100100
name: node_logs_${{ matrix.env }}_${{ matrix.os }}

.github/workflows/regression_reusable.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,27 +126,27 @@ jobs:
126126
curl -s -X PUT --fail-with-body -u ${{ secrets.TCACHE_BASIC_AUTH }} "${{ secrets.TCACHE_URL }}/${testrun_name_strip}/${{ github.run_number }}/import" -F "junitxml=@testrun-report.xml"
127127
fi
128128
- name: ↟ Upload testing artifacts on failure
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v5
130130
if: failure()
131131
with:
132132
name: testing-artifacts
133133
path: testing_artifacts.tar.xz
134134
- name: ↟ Upload Allure results
135-
uses: actions/upload-artifact@v4
135+
uses: actions/upload-artifact@v5
136136
# When using `always()`, you lose ability to manually cancel the workflow.
137137
# Use `success() || failure()` instead.
138138
if: success() || failure()
139139
with:
140140
name: allure-results
141141
path: allure-results.tar.xz
142142
- name: ↟ Upload HTML report
143-
uses: actions/upload-artifact@v4
143+
uses: actions/upload-artifact@v5
144144
if: success() || failure()
145145
with:
146146
name: testrun-report
147147
path: testrun-report.html
148148
- name: ↟ Upload testrun files
149-
uses: actions/upload-artifact@v4
149+
uses: actions/upload-artifact@v5
150150
if: success() || failure()
151151
with:
152152
name: testrun-files
@@ -157,7 +157,7 @@ jobs:
157157
deselected_tests.txt
158158
requirements_coverage.json
159159
- name: ↟ Upload CLI coverage
160-
uses: actions/upload-artifact@v4
160+
uses: actions/upload-artifact@v5
161161
if: success() || failure()
162162
with:
163163
name: cli-coverage

.github/workflows/smash_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,15 +120,15 @@ jobs:
120120

121121

122122
- name: Publish cardano-db-sync and SMASH logs
123-
uses: actions/upload-artifact@v4
123+
uses: actions/upload-artifact@v5
124124
if: always()
125125
with:
126126
name: db_sync_and smash_logs_${{ env.ENVM }}
127127
path: ${{ github.workspace }}/cardano-db-sync/logs/*
128128

129129

130130
- name: Publish test reports
131-
uses: actions/upload-artifact@v4
131+
uses: actions/upload-artifact@v5
132132
if: always()
133133
with:
134134
name: pytest_results_${{ env.ENVM }}

.github/workflows/upgrade_reusable.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,33 +51,33 @@ jobs:
5151
./.github/node_upgrade.sh
5252
echo "::endgroup::"
5353
- name: ↟ Upload testing artifacts on failure
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v5
5555
if: failure()
5656
with:
5757
name: testing-artifacts
5858
path: testing_artifacts.tar.xz
5959
- name: ↟ Upload Allure results for step1
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v5
6161
# When using `always()`, you lose ability to manually cancel the workflow.
6262
# Use `success() || failure()` instead.
6363
if: success() || failure()
6464
with:
6565
name: allure-results-step1
6666
path: allure-results-step1.tar.xz
6767
- name: ↟ Upload Allure results for step2
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
if: success() || failure()
7070
with:
7171
name: allure-results-step2
7272
path: allure-results-step2.tar.xz
7373
- name: ↟ Upload Allure results for step3
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v5
7575
if: success() || failure()
7676
with:
7777
name: allure-results-step3
7878
path: allure-results-step3.tar.xz
7979
- name: ↟ Upload HTML reports
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v5
8181
if: success() || failure()
8282
with:
8383
name: testrun-reports
@@ -86,15 +86,15 @@ jobs:
8686
testrun-report-step2.html
8787
testrun-report-step3.html
8888
- name: ↟ Upload testrun files
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@v5
9090
if: success() || failure()
9191
with:
9292
name: testrun-files
9393
path: |
9494
scheduling.log.xz
9595
errors_all.log
9696
- name: ↟ Upload CLI coverage
97-
uses: actions/upload-artifact@v4
97+
uses: actions/upload-artifact@v5
9898
if: success() || failure()
9999
with:
100100
name: cli-coverage

0 commit comments

Comments
 (0)