Skip to content

Commit bffbfde

Browse files
Bump actions/cache from 3 to 4 (#594)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3a205e7 commit bffbfde

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,24 +28,24 @@ jobs:
2828
echo ::set-output name=PYRIGHT_VERSION::$(grep '"pyright"' .github/package.json | cut -d\" -f4)
2929
id: read_versions
3030
- name: Cache pyenv
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: |
3434
~/.pyenv
3535
!~/.pyenv/versions
3636
key: pyenv-installation-2
3737
- name: Cache pyenv mypy-protobuf ver
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.pyenv/versions/${{matrix.py-ver-mypy-protobuf}}
4141
key: pyenv-${{matrix.py-ver-mypy-protobuf}}-${{hashFiles('setup.py')}}
4242
- name: Cache pyenv unit tests 3 ver
43-
uses: actions/cache@v3
43+
uses: actions/cache@v4
4444
with:
4545
path: ~/.pyenv/versions/${{env.PY_VER_UNIT_TESTS_3}}
4646
key: pyenv-${{env.PY_VER_UNIT_TESTS_3}}-${{hashFiles('setup.py')}}
4747
- name: Cache pyenv mypy ver
48-
uses: actions/cache@v3
48+
uses: actions/cache@v4
4949
with:
5050
path: ~/.pyenv/versions/${{env.PY_VER_MYPY}}
5151
key: pyenv-${{env.PY_VER_MYPY}}-${{hashFiles('setup.py')}}

0 commit comments

Comments
 (0)