Skip to content

Commit 9ae7700

Browse files
authored
Merge pull request #2346 from sustainable-computing-io/dependabot/github_actions/github-actions-3249c11fdc
chore(deps): bump the github-actions group with 2 updates
2 parents 4bfc5af + b95f6e6 commit 9ae7700

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/config-change.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# NOTE: Uploading the message as an artifact so that PR Comment workflow can use it to
8181
# add comment on PR with the message.
8282
- name: Upload message
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
with:
8585
name: message
8686
path: /tmp/message-${{ github.event.pull_request.number }}.txt

.github/workflows/pr-comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Download comment message
2626
id: download-artifact
2727
continue-on-error: true
28-
uses: actions/download-artifact@v5
28+
uses: actions/download-artifact@v6
2929
with:
3030
name: message
3131
path: /tmp/

.github/workflows/profiling.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
./hack/reports/profiling.sh compare
9797
9898
- name: Upload profiling artifact
99-
uses: actions/upload-artifact@v4
99+
uses: actions/upload-artifact@v5
100100
with:
101101
name: profile-artifacts-${{ github.event.pull_request.number }}
102102
path: ./tmp/*
@@ -138,7 +138,7 @@ jobs:
138138
run: go install github.com/google/pprof@6e76a2b096b5fa52e4bb3f7f7a357bd6e6b3b7b1
139139

140140
- name: Download profiling artifacts
141-
uses: actions/download-artifact@v5
141+
uses: actions/download-artifact@v6
142142
with:
143143
name: profile-artifacts-${{ github.event.pull_request.number }}
144144
path: ./tmp
@@ -161,7 +161,7 @@ jobs:
161161
# NOTE: Uploading the message as an artifact so that PR Comment workflow can use it to
162162
# add comment on PR with the message.
163163
- name: Upload message
164-
uses: actions/upload-artifact@v4
164+
uses: actions/upload-artifact@v5
165165
with:
166166
name: message
167167
path: /tmp/message-${{ github.event.pull_request.number }}.txt

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5252
# format to the repository Actions tab.
5353
- name: Upload artifact
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v5
5555
with:
5656
name: SARIF file
5757
path: scorecard-results.sarif

.github/workflows/test-and-codecov.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: make test
2525

2626
- name: Upload coverage report as artifact
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v5
2828
with:
2929
name: coverage-report
3030
path: coverage.out # The file name of the coverage report should be same as what make target uses
@@ -37,7 +37,7 @@ jobs:
3737
uses: actions/checkout@v5
3838

3939
- name: Download coverage report artifact
40-
uses: actions/download-artifact@v5
40+
uses: actions/download-artifact@v6
4141
with:
4242
name: coverage-report
4343

0 commit comments

Comments
 (0)