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/build_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
python-version: '3.10'

- name: Configure pip cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pypi-${{ hashFiles('deploy/requirements-mw.txt') }}-${{ hashFiles('deploy/requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cicd_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ jobs:
core.setOutput("id", release.id);
core.setOutput("tag_name", release.tag_name);

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
id: pip-cache
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/follow-merge-upstream-repo-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:

- name: "Frontend: Configure yarn cache"
if: steps.details.outputs.frontend_module_dist
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ env.CACHE_NAME_PREFIX }}-${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('**/package.json') }}-${{ hashFiles('**/yarn.lock') }}
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:

- name: "Frontend: LSF Docs: Cache node modules"
if: steps.details.outputs.build_lsf_docs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ env.CACHE_NAME_PREFIX }}-${{ runner.os }}-node-${{ env.NODE }}-jsdoc-to-markdown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Configure yarn cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ env.CACHE_NAME_PREFIX }}-${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure npm cache
id: npm-cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Configure gitleaks binary cache
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /usr/local/bin/gitleaks
key: gitleaks-${{ env.GIT_GITLEAKS_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
python-version: ${{ matrix.python-version }}
activate-environment: test-environment

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
id: pip-cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
sudo apt-get update
sudo apt-get install libsasl2-dev python3-dev libldap2-dev libssl-dev libxml2-dev libxslt-dev

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
id: pip-cache
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
sudo apt-get update
sudo apt-get install libffi7 libldap2-dev libsasl2-dev libssl-dev libxml2-dev libxslt-dev python3-dev

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
id: pip-cache
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure npm cache
id: npm-cache
with:
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
sudo apt-get update
sudo apt-get install libffi7 libldap2-dev libsasl2-dev libssl-dev libxml2-dev libxslt-dev python3-dev

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
id: pip-cache
with:
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
id: npm-cache-dir
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure npm cache
id: npm-cache
with:
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Configure pip cache
with:
path: ~\AppData\Local\pip\Cache
Expand Down