Skip to content

Commit

Permalink
Update actions/cache action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 17, 2024
1 parent 30c4333 commit b9d309b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/helm-local/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
version: 3.9.0

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.CHART_PATH }}/charts
key: ${{ runner.os }}-${{ inputs.CHART_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/helm-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
version: 3.9.0

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.CHART_PATH }}/charts
key: ${{ runner.os }}-${{ inputs.CHART_PATH }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/sonarqube/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
java-version: 1.11

- name: Cache SonarQube packages
uses: actions/cache@v3
uses: actions/cache@v4
if: inputs.LANGUAGE == 'dot-net'
with:
path: ~/.sonar/cache
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-configs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
using: "composite"
steps:

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Restore cache
id: cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test-ruby/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
bundler-cache: true
ruby-version: ${{ inputs.RUBY_VERSION }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
echo "${i}" >> $GITHUB_ENV
done
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: |
~/.cache/Cypress
Expand Down

0 comments on commit b9d309b

Please sign in to comment.