Skip to content

Commit

Permalink
chore(deps): update actions/cache action to v4.1.0 (#441)
Browse files Browse the repository at this point in the history
Co-authored-by: grafanarenovatebot[bot] <146220760+grafanarenovatebot[bot]@users.noreply.github.com>
  • Loading branch information
grafanarenovatebot[bot] authored Oct 7, 2024
1 parent 680fa60 commit e583f36
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-shared-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Restore github-action.json schema
id: restore-schema
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
with:
path: |
github-action.json
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
GH_TOKEN: ${{ github.token }}

- name: Save github-action.json schema to cache
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
if: steps.download-schema.outputs.schema-changed == 'true'
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions actions/generate-openapi-clients/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,15 @@ runs:

# Get openapi-generator
- id: openapi-generator-cache
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
with:
key: openapi-generator-${{ inputs.generator-version }}
path: openapi-generator-cli.jar
- shell: bash
if: steps.openapi-generator-cache.outputs.cache-hit != 'true'
run: |
wget -nv "https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/${{ inputs.generator-version }}/openapi-generator-cli-${{ inputs.generator-version }}.jar" -O ./openapi-generator-cli.jar
- uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
- uses: actions/cache/save@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
if: steps.openapi-generator-cache.outputs.cache-hit != 'true'
with:
key: openapi-generator-${{ inputs.generator-version }}
Expand Down
2 changes: 1 addition & 1 deletion actions/setup-argo/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
steps:
- name: Setup cache
id: cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
with:
path: ${{ github.workspace }}/bin/argo
key: ${{ inputs.cache-prefix }}-${{ runner.os }}-${{ runner.arch }}-${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion actions/setup-conftest/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
steps:
- name: Setup cache
id: cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
with:
path: ${{ github.workspace }}/bin/conftest
key: conftest-${{ runner.os }}-${{ runner.arch }}-${{ inputs.version }}
Expand Down

0 comments on commit e583f36

Please sign in to comment.