Skip to content
Closed
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 build-poetry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ runs:
with:
host-actions-root: ${{ steps.set-path.outputs.host_actions_root }}
- name: Cache local Poetry cache
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: inputs.disable-caching == 'false'
with:
path: ${{ github.workspace }}/${{ inputs.poetry-cache-dir }}
Expand Down
2 changes: 1 addition & 1 deletion build-yarn/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ runs:
working_directory: ${{ inputs.working-directory }}

- name: Cache Yarn dependencies
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: ${{ inputs.cache-yarn == 'true' }}
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ runs:
echo "::warning:: This action is deprecated and will be removed in future releases. " \
"Please migrate to using the SonarSource/gh-action_cache action directly." >&2

- uses: SonarSource/gh-action_cache@v1
- uses: SonarSource/gh-action_cache@master
id: cache
with:
path: ${{ inputs.path }}
Expand Down
2 changes: 1 addition & 1 deletion code-signing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
echo "JSIGN_CACHE_PATH=/tmp/jsign-cache" >> "$GITHUB_ENV"

- name: Cache code signing tools
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
id: tools-cache
with:
path: |
Expand Down
2 changes: 1 addition & 1 deletion config-gradle/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ runs:
run: echo "workflow_name=${WORKFLOW_NAME// /-}" >> "$GITHUB_OUTPUT"

- name: Gradle Cache
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: steps.config-gradle-completed.outputs.skip != 'true' && inputs.disable-caching == 'false'
with:
path: ${{ inputs.cache-paths }}
Expand Down
2 changes: 1 addition & 1 deletion config-maven/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ runs:
run: echo "workflow_name=${WORKFLOW_NAME// /-}" >> "$GITHUB_OUTPUT"

- name: Cache local Maven repository
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: steps.config-maven-completed.outputs.skip != 'true' && inputs.disable-caching == 'false'
with:
path: ${{ inputs.cache-paths }}
Expand Down
2 changes: 1 addition & 1 deletion config-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ runs:
run: echo "workflow_name=${WORKFLOW_NAME// /-}" >> "$GITHUB_OUTPUT"

- name: Cache NPM dependencies
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: ${{ inputs.cache-npm == 'true' }}
with:
path: ~/.npm
Expand Down
2 changes: 1 addition & 1 deletion config-pip/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ runs:
run: echo "workflow_name=${WORKFLOW_NAME// /-}" >> "$GITHUB_OUTPUT"

- name: Cache pip dependencies
uses: SonarSource/gh-action_cache@v1
uses: SonarSource/gh-action_cache@master
if: inputs.disable-caching == 'false'
with:
path: ${{ inputs.cache-paths }}
Expand Down
Loading