Skip to content

Commit 0f82ff6

Browse files
HDDS-15107. Bump actions/upload-artifact to 7.0.1 (#10151)
1 parent be1ed89 commit 0f82ff6

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build-ratis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
mvn -B --no-transfer-progress -Dscan=false versions:set -DnewVersion="$ratis_version"
9999
dev-support/checks/build.sh
100100
- name: Store Maven repo for tests
101-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
101+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
102102
with:
103103
name: ratis-jars
104104
path: |

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ jobs:
267267
268268
- name: Archive build results
269269
if: ${{ !cancelled() }}
270-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
270+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
271271
with:
272272
name: ${{ (inputs.split && format('{0}-{1}', inputs.script, inputs.split)) || inputs.script }}
273273
# please keep path as a single item; move to that directory all files needed in the artifact
@@ -278,7 +278,7 @@ jobs:
278278
# to avoid the need for 3 more inputs.
279279
- name: Store binaries for tests
280280
if: ${{ inputs.script == 'build' && !cancelled() }}
281-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
281+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
282282
with:
283283
name: ozone-bin
284284
path: |
@@ -288,7 +288,7 @@ jobs:
288288

289289
- name: Store source tarball for compilation
290290
if: ${{ inputs.script == 'build' && !cancelled() }}
291-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
291+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
292292
with:
293293
name: ozone-src
294294
path: |
@@ -297,7 +297,7 @@ jobs:
297297

298298
- name: Store Maven repo for tests
299299
if: ${{ inputs.script == 'build' && !cancelled() }}
300-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
300+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
301301
with:
302302
name: ozone-repo
303303
path: |

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ jobs:
391391
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
392392
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
393393
- name: Archive build results
394-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
394+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
395395
with:
396396
name: coverage
397397
path: target/coverage

.github/workflows/generate-config-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
python3 dev-support/ci/xml_to_md.py ozone-bin/extracted Configurations.md
5555
5656
- name: Upload generated documentation
57-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
57+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5858
with:
5959
name: config-documentation
6060
path: Configurations.md

.github/workflows/intermittent-test-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
netty_version: ${{ needs.ratis.outputs.netty-version }}
154154
protobuf_version: ${{ needs.ratis.outputs.protobuf-version }}
155155
- name: Store Maven repo for tests
156-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
156+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
157157
with:
158158
name: ozone-repo
159159
path: |
@@ -244,7 +244,7 @@ jobs:
244244
run: hadoop-ozone/dev-support/checks/_summary.sh target/unit/summary.txt
245245
if: ${{ !cancelled() }}
246246
- name: Archive build results
247-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
247+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
248248
if: ${{ failure() }}
249249
with:
250250
name: result-${{ github.run_number }}-${{ github.run_id }}-split-${{ matrix.split }}

.github/workflows/repeat-acceptance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
env:
117117
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
118118
- name: Store binaries for tests
119-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
119+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
120120
with:
121121
name: ozone-bin
122122
path: |
@@ -158,7 +158,7 @@ jobs:
158158
run: hadoop-ozone/dev-support/checks/_summary.sh target/${{ github.job }}/summary.txt
159159
if: ${{ !cancelled() }}
160160
- name: Archive build results
161-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
161+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
162162
if: always()
163163
with:
164164
name: acceptance-${{ matrix.split }}

0 commit comments

Comments
 (0)