Skip to content

Commit 62c57b7

Browse files
liu-shaojuncranechu0131
authored andcommitted
fix dependabot alerts (intel#12006)
* fix dependabot alerts * update
1 parent dbbdd2c commit 62c57b7

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

.github/actions/llm/download-llm-binary/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Download all build files
13-
uses: actions/download-artifact@v3
13+
uses: actions/download-artifact@4.1.7
1414
- name: Move build resources
1515
shell: bash
1616
run: |

.github/workflows/llm-c-evaluation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ permissions:
1212
on:
1313
# schedule:
1414
# - cron: "00 15 * * *" # GMT time, 15:00 GMT == 23:00 Beijing Time
15-
pull_request:
16-
branches: [main]
17-
paths:
18-
- ".github/workflows/llm-c-evaluation.yml"
15+
# pull_request:
16+
# branches: [main]
17+
# paths:
18+
# - ".github/workflows/llm-c-evaluation.yml"
1919
# Allows you to run this workflow manually from the Actions tab
2020
workflow_dispatch:
2121
inputs:
@@ -204,7 +204,7 @@ jobs:
204204
pip install pandas==1.5.3
205205
206206
- name: Download ceval results
207-
uses: actions/download-artifact@v3
207+
uses: actions/download-artifact@4.1.7
208208
with:
209209
name: ceval_results
210210
path: results
@@ -259,7 +259,7 @@ jobs:
259259
fi
260260
261261
- name: Download ceval results
262-
uses: actions/download-artifact@v3
262+
uses: actions/download-artifact@4.1.7
263263
with:
264264
name: results_${{ needs.set-matrix.outputs.date }}
265265
path: ${{ env.ACC_FOLDER }}

.github/workflows/llm-harness-evaluation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ permissions:
1212
on:
1313
# schedule:
1414
# - cron: "30 12 * * *" # GMT time, 12:30 GMT == 20:30 China
15-
pull_request:
16-
branches: [main]
17-
paths:
18-
- ".github/workflows/llm-harness-evaluation.yml"
15+
# pull_request:
16+
# branches: [main]
17+
# paths:
18+
# - ".github/workflows/llm-harness-evaluation.yml"
1919
# Allows you to run this workflow manually from the Actions tab
2020
workflow_dispatch:
2121
inputs:
@@ -220,7 +220,7 @@ jobs:
220220
pip install --upgrade pip
221221
pip install jsonlines pytablewriter regex
222222
- name: Download all results
223-
uses: actions/download-artifact@v3
223+
uses: actions/download-artifact@4.1.7
224224
with:
225225
name: harness_results
226226
path: results
@@ -260,7 +260,7 @@ jobs:
260260
fi
261261
262262
- name: Download harness results
263-
uses: actions/download-artifact@v3
263+
uses: actions/download-artifact@4.1.7
264264
with:
265265
name: harness_results
266266
path: ${{ env.ACC_FOLDER}}/${{ env.DATE }}

.github/workflows/llm-ppl-evaluation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ permissions:
1212
on:
1313
# schedule:
1414
# - cron: "00 12 * * *" # GMT time, 12:00 GMT == 20:00 China
15-
pull_request:
16-
branches: [main]
17-
paths:
18-
- ".github/workflows/llm-ppl-evaluation.yml"
15+
# pull_request:
16+
# branches: [main]
17+
# paths:
18+
# - ".github/workflows/llm-ppl-evaluation.yml"
1919
# Allows you to run this workflow manually from the Actions tab
2020
workflow_dispatch:
2121
inputs:
@@ -206,7 +206,7 @@ jobs:
206206
pip install --upgrade pip
207207
pip install jsonlines pytablewriter regex
208208
- name: Download all results
209-
uses: actions/download-artifact@v3
209+
uses: actions/download-artifact@4.1.7
210210
with:
211211
name: ppl_results
212212
path: results
@@ -245,7 +245,7 @@ jobs:
245245
fi
246246
247247
- name: Download ppl results
248-
uses: actions/download-artifact@v3
248+
uses: actions/download-artifact@4.1.7
249249
with:
250250
name: ppl_results
251251
path: ${{ env.ACC_FOLDER}}/${{ env.DATE }}

.github/workflows/llm-whisper-evaluation.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ permissions:
1212
on:
1313
# schedule:
1414
# - cron: "00 13 * * *" # GMT time, 13:00 GMT == 21:00 China
15-
pull_request:
16-
branches: [main]
17-
paths:
18-
- ".github/workflows/llm-whisper-evaluation.yml"
15+
# pull_request:
16+
# branches: [main]
17+
# paths:
18+
# - ".github/workflows/llm-whisper-evaluation.yml"
1919
# Allows you to run this workflow manually from the Actions tab
2020
workflow_dispatch:
2121
inputs:
@@ -176,14 +176,14 @@ jobs:
176176
177177
- name: Download all results for nightly run
178178
if: github.event_name == 'schedule'
179-
uses: actions/download-artifact@v3
179+
uses: actions/download-artifact@4.1.7
180180
with:
181181
name: whisper_results
182182
path: ${{ env.NIGHTLY_FOLDER}}/${{ env.OUTPUT_PATH }}
183183

184184
- name: Download all results for pr run
185185
if: github.event_name == 'pull_request'
186-
uses: actions/download-artifact@v3
186+
uses: actions/download-artifact@4.1.7
187187
with:
188188
name: whisper_results
189189
path: ${{ env.PR_FOLDER}}/${{ env.OUTPUT_PATH }}

0 commit comments

Comments
 (0)