-
Notifications
You must be signed in to change notification settings - Fork 0
CI: update checkout, setup-python, setup-uv, codecov #60
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,49 +16,49 @@ jobs: | |
| python-version: [ '3.12' ] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v7 | ||
| with: | ||
| # Ensure a dynamic version is assigned | ||
| fetch-tags: true | ||
| fetch-depth: 20 | ||
|
|
||
| - name: Cache air | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (bug_risk): actions/cache@v6 is not a currently published major and will break the workflow. actions/cache is only released up to v4. Using |
||
| with: | ||
| path: ~/audb/air/1.4.2 | ||
| key: air-1.4.2 | ||
|
|
||
| - name: Cache cough-speech-sneeze | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
| with: | ||
| path: ~/audb/cough-speech-sneeze/2.0.1 | ||
| key: cough-speech-sneeze-2.0.1 | ||
|
|
||
| - name: Cache emodb | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
| with: | ||
| path: ~/audb/emodb/1.4.1 | ||
| key: emodb-1.4.1 | ||
|
|
||
| - name: Cache micirp | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
| with: | ||
| path: ~/audb/micirp/1.0.0 | ||
| key: micirp-1.0.0 | ||
|
|
||
| - name: Cache musan | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
| with: | ||
| path: ~/audb/musan/1.0.0 | ||
| key: musan-1.0.0 | ||
|
|
||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v5 | ||
| uses: actions/setup-python@v7 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (bug_risk): actions/setup-python@v7 is not available and will prevent jobs from starting. The latest published major version is |
||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
|
|
||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@v5 | ||
| uses: astral-sh/setup-uv@v9.0.0 | ||
|
|
||
| - name: Ubuntu - install libsndfile | ||
| run: | | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
issue (bug_risk): Using actions/checkout@v7 may fail since this major version does not exist yet.
The latest published major for
actions/checkoutisv4, so@v7will currently resolve to nothing and the workflow will fail with anUnable to resolve actionerror. Unless you’re targeting a different action, please use@v4or another existing tag to keep the pipeline working.