Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix dependabot alerts (#12011) #15

Open
wants to merge 1 commit into
base: branch-2.1.0b2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/llm/download-llm-binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
using: "composite"
steps:
- name: Download all build files
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
- name: Move build resources
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-c-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
pip install pandas==1.5.3

- name: Download ceval results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: ceval_results
path: results
Expand Down Expand Up @@ -259,7 +259,7 @@ jobs:
fi

- name: Download ceval results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: results_${{ needs.set-matrix.outputs.date }}
path: ${{ env.ACC_FOLDER }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-harness-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
pip install --upgrade pip
pip install jsonlines pytablewriter regex
- name: Download all results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: harness_results
path: results
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
fi

- name: Download harness results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: harness_results
path: ${{ env.ACC_FOLDER}}/${{ env.DATE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-ppl-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ jobs:
pip install --upgrade pip
pip install jsonlines pytablewriter regex
- name: Download all results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: ppl_results
path: results
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:
fi

- name: Download ppl results
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: ppl_results
path: ${{ env.ACC_FOLDER}}/${{ env.DATE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/llm-whisper-evaluation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,14 @@ jobs:

- name: Download all results for nightly run
if: github.event_name == 'schedule'
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: whisper_results
path: ${{ env.NIGHTLY_FOLDER}}/${{ env.OUTPUT_PATH }}

- name: Download all results for pr run
if: github.event_name == 'pull_request'
uses: actions/download-artifact@v3
uses: actions/download-artifact@4.1.7
with:
name: whisper_results
path: ${{ env.PR_FOLDER}}/${{ env.OUTPUT_PATH }}
Expand Down