Skip to content
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/workflows/dependency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

# speeds up repeat runs (~30 s instead of several minutes)
- name: Restore NVD DB cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.dependency-check
key: depcheck-${{ runner.os }}-${{ hashFiles('**/requirements*.txt',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: "3.x"
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install pip 24.3.1 to avoid GHSA-4xh5-x5gv-qwph
run: python -m pip install --upgrade "pip==24.3.1"
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand All @@ -52,7 +52,7 @@ jobs:
with:
node-version: "20"
- name: Cache npm
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package.json') }}
Expand All @@ -62,7 +62,7 @@ jobs:
run: npm install
# Jest and Prettier are devDependencies installed here
- name: Cache pre-commit
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
with:
python-version: "3.12"
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
with:
python-version: "3.12"
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
with:
python-version: "3.12"
- name: Cache uv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/uv
key: ${{ runner.os }}-uv-${{ hashFiles('**/pyproject.toml', '**/uv.lock') }}
Expand Down
Loading