Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/cache action to v4 #214

Merged
merged 1 commit into from
Jan 18, 2024
Merged
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/app-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Gradle 缓存配置 https://docs.github.com/cn/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# GitHub 将删除 7 天内未被访问的任何缓存条目。 可以存储的缓存数没有限制,但大小10 GB
- name: Cache Gradle packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-apipost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Gradle 缓存配置 https://docs.github.com/cn/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# GitHub 将删除 7 天内未被访问的任何缓存条目。 可以存储的缓存数没有限制,但大小10 GB
- name: Cache Gradle packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-compress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Gradle 缓存配置 https://docs.github.com/cn/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# GitHub 将删除 7 天内未被访问的任何缓存条目。 可以存储的缓存数没有限制,但大小10 GB
- name: Cache Gradle packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Gradle 缓存配置 https://docs.github.com/cn/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# GitHub 将删除 7 天内未被访问的任何缓存条目。 可以存储的缓存数没有限制,但大小10 GB
- name: Cache Gradle packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-location.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Gradle 缓存配置 https://docs.github.com/cn/actions/using-workflows/caching-dependencies-to-speed-up-workflows
# GitHub 将删除 7 天内未被访问的任何缓存条目。 可以存储的缓存数没有限制,但大小10 GB
- name: Cache Gradle packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qodana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache Qodana dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/work/_temp/_github_home/qodana-cache
key: ${{ runner.os }}-qodana-${{ github.ref }}
Expand Down