Skip to content

Commit 2ba178b

Browse files
authored
Merge pull request #1271 from risuorg/dependabot/github_actions/actions/cache-5
build(deps): bump actions/cache from 4 to 5
2 parents 26b7fef + 674578f commit 2ba178b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/setup-go@v6
2323
with:
2424
go-version: '>=1.18'
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: |
2828
~/.cache/pre-commit

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

32-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3333
with:
3434
path: ~/.cache/pip
3535
key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
- name: Checkout
2323
uses: actions/checkout@v6
2424
- uses: actions/setup-python@v6
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: |
2828
~/.cache/pre-commit
2929
key: ${{ runner.os }}-precommit-${{ hashFiles('**/.pre-commit-config.yaml/*') }}
3030
restore-keys: |
3131
${{ runner.os }}-precommit-
3232
33-
- uses: actions/cache@v4
33+
- uses: actions/cache@v5
3434
with:
3535
path: ~/.cache/pip
3636
key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt') }}

0 commit comments

Comments
 (0)