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
4 changes: 2 additions & 2 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Cache Bazel Unix
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-PyDP
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
echo "::set-output name=dir::$(poetry config cache-dir)"

- name: poetry cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.poetry-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Cache Bazel Unix
# Not working on Windows: https://github.com/actions/cache/issues/576
if: runner.os != 'Windows'
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-PyDP
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Cache Bazel Windows
if: runner.os == 'Windows'
# https://stackoverflow.com/questions/66870002/github-actions-cache-maven-m2-repository-on-windows-environment-c-users-run
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-cache
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
echo "::set-output name=dir::$(poetry config cache-dir)"

- name: poetry cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.poetry-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Cache Bazel Unix
# Not working on Windows: https://github.com/actions/cache/issues/576
if: runner.os != 'Windows'
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-PyDP
Expand All @@ -99,7 +99,7 @@ jobs:
- name: Cache Bazel Windows
if: runner.os == 'Windows'
# https://stackoverflow.com/questions/66870002/github-actions-cache-maven-m2-repository-on-windows-environment-c-users-run
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-cache
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
echo "::set-output name=dir::$(poetry config cache-dir)"

- name: poetry cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.poetry-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Cache Bazel Unix
# Not working on Windows: https://github.com/actions/cache/issues/576
if: runner.os != 'Windows'
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-PyDP
Expand All @@ -97,7 +97,7 @@ jobs:
- name: Cache Bazel Windows
if: runner.os == 'Windows'
# https://stackoverflow.com/questions/66870002/github-actions-cache-maven-m2-repository-on-windows-environment-c-users-run
uses: actions/cache@v2.1.5
uses: actions/cache@v4
with:
path: |
./bazel-cache
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
echo "::set-output name=dir::$(poetry config cache-dir)"

- name: poetry cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ steps.poetry-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
Expand Down
Loading