Skip to content

Commit

Permalink
Merge pull request #199 from signalwire/renovate/actions-cache-4.x
Browse files Browse the repository at this point in the history
Update actions/cache action to v4
  • Loading branch information
lucasmellos authored Jan 23, 2024
2 parents 137c564 + b9d309b commit a33c105
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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

0 comments on commit a33c105

Please sign in to comment.