Skip to content

Commit 3757bf3

Browse files
chore(deps): bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...8e8c483) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9c0fcc9 commit 3757bf3

9 files changed

Lines changed: 19 additions & 19 deletions

.github/workflows/benchmark-multinode-tmpl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
done
169169
170170
- name: Upload results
171-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
171+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
172172
with:
173173
name: bmk_${{ env.RESULT_FILENAME }}
174174
path: agg_${{ env.RESULT_FILENAME }}_*.json

.github/workflows/benchmark-tmpl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ jobs:
167167
run: |
168168
python3 utils/process_result.py
169169
- name: Upload result
170-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
170+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
171171
with:
172172
name: bmk_${{ env.RESULT_FILENAME }}
173173
path: agg_${{ env.RESULT_FILENAME }}.json

.github/workflows/collect-results.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fetch-depth: 0
2424

2525
- name: Download JSON artifacts
26-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
26+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
2727
with:
2828
path: results/
2929
pattern: ${{ inputs.result-prefix && format('{0}_*', inputs.result-prefix) || '*' }}
@@ -37,7 +37,7 @@ jobs:
3737
run: python3 utils/collect_results.py results/ ${{ inputs.result-prefix || 'all' }}
3838

3939
- name: Upload aggregated results
40-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
40+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4141
with:
4242
name: results_${{ inputs.result-prefix || 'all' }}
4343
path: agg_${{ inputs.result-prefix || 'all' }}.json

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
fetch-depth: 0
123123

124124
- name: Download results artifacts
125-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
125+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
126126
with:
127127
path: ${{ env.RESULTS_DIR }}
128128
pattern: results_*
@@ -133,7 +133,7 @@ jobs:
133133
- name: Calculate success rate
134134
run: python3 utils/calc_success_rate.py $STATS_FILENAME
135135

136-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
136+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
137137
with:
138138
name: "run-stats"
139139
path: ${{ env.STATS_FILENAME }}.json

.github/workflows/full-sweep-1k1k-scheduler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
fetch-depth: 0
212212

213213
- name: Download results artifacts
214-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
214+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
215215
with:
216216
path: ${{ env.RESULTS_DIR }}
217217
pattern: results_*
@@ -222,7 +222,7 @@ jobs:
222222
- name: Calculate success rate
223223
run: python3 utils/calc_success_rate.py $STATS_FILENAME
224224

225-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
225+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
226226
with:
227227
name: "run-stats"
228228
path: ${{ env.STATS_FILENAME }}.json

.github/workflows/full-sweep-1k8k-scheduler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
fetch-depth: 0
212212

213213
- name: Download results artifacts
214-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
214+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
215215
with:
216216
path: ${{ env.RESULTS_DIR }}
217217
pattern: results_*
@@ -222,7 +222,7 @@ jobs:
222222
- name: Calculate success rate
223223
run: python3 utils/calc_success_rate.py $STATS_FILENAME
224224

225-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
225+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
226226
with:
227227
name: "run-stats"
228228
path: ${{ env.STATS_FILENAME }}.json

.github/workflows/full-sweep-8k1k-scheduler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
fetch-depth: 0
212212

213213
- name: Download results artifacts
214-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
214+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
215215
with:
216216
path: ${{ env.RESULTS_DIR }}
217217
pattern: results_*
@@ -222,7 +222,7 @@ jobs:
222222
- name: Calculate success rate
223223
run: python3 utils/calc_success_rate.py $STATS_FILENAME
224224

225-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
225+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
226226
with:
227227
name: "run-stats"
228228
path: ${{ env.STATS_FILENAME }}.json

.github/workflows/label-validation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
fetch-depth: 0
135135

136136
- name: Download results artifacts
137-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
137+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
138138
with:
139139
path: ${{ env.RESULTS_DIR }}
140140
pattern: results_*
@@ -145,7 +145,7 @@ jobs:
145145
- name: Calculate success rate
146146
run: python3 utils/calc_success_rate.py $STATS_FILENAME
147147

148-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
148+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
149149
with:
150150
name: "run-stats"
151151
path: ${{ env.STATS_FILENAME }}.json

.github/workflows/run-sweep.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
search-space-config: ${{ steps.setup.outputs.search-space-config }}
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
34+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3535
with:
3636
fetch-depth: 0
3737

@@ -196,7 +196,7 @@ jobs:
196196
echo "$CONFIG_JSON" | jq '.changelog_metadata' > changelog_metadata.json
197197
198198
- name: Upload changelog artifact
199-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
199+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
200200
with:
201201
name: changelog-metadata
202202
path: changelog_metadata.json
@@ -212,13 +212,13 @@ jobs:
212212
GITHUB_TOKEN: ${{ secrets.REPO_PAT }}
213213

214214
steps:
215-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
215+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
216216
with:
217217
token: ${{ secrets.REPO_PAT }}
218218
fetch-depth: 0
219219

220220
- name: Download results artifacts
221-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
221+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
222222
with:
223223
path: ${{ env.RESULTS_DIR }}
224224
pattern: results_*
@@ -229,7 +229,7 @@ jobs:
229229
- name: Calculate success rate
230230
run: python3 utils/calc_success_rate.py $STATS_FILENAME
231231

232-
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
232+
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
233233
with:
234234
name: "run-stats"
235235
path: ${{ env.STATS_FILENAME }}.json

0 commit comments

Comments
 (0)