Skip to content

Commit

Permalink
merge and fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
brokenpip3 committed Sep 25, 2024
2 parents f0f8b17 + 5932fdb commit f430596
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ runs:
with:
path: |
~/.local/share/bats
key: ${{ runner.os }}-bats-${{ inputs.bats-version }}
key: ${{ runner.os }}-${{ runner.arch }}-bats-${{ inputs.bats-version }}

- name: "Set PATH in case of cache-hit"
if: inputs.bats-install == 'true' && steps.bats-cache.outputs.cache-hit == 'true'
Expand Down Expand Up @@ -195,7 +195,7 @@ runs:
id: support-cache
with:
path: ${{ env.SUPPORT_DESTDIR }}
key: ${{ runner.os }}-bats-support-${{ inputs.support-version }}
key: ${{ runner.os }}-${{ runner.arch }}-bats-support-${{ inputs.support-version }}

- name: "Download and install Bats-support"
if: inputs.support-install == 'true' && steps.support-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -236,7 +236,7 @@ runs:
id: assert-cache
with:
path: ${{ env.ASSERT_DESTDIR }}
key: ${{ runner.os }}-bats-assert-${{ inputs.assert-version }}
key: ${{ runner.os }}-${{ runner.arch }}-bats-assert-${{ inputs.assert-version }}

- name: "Download and install Bats-assert"
if: inputs.assert-install == 'true' && steps.assert-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -277,7 +277,7 @@ runs:
id: detik-cache
with:
path: ${{ env.DETIK_DESTDIR }}
key: ${{ runner.os }}-bats-detik-${{ inputs.detik-version }}
key: ${{ runner.os }}-${{ runner.arch }}-bats-detik-${{ inputs.detik-version }}

- name: "Download and install Bats-detik"
if: inputs.detik-install == 'true' && steps.detik-cache.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -317,7 +317,7 @@ runs:
id: file-cache
with:
path: ${{ env.FILE_DESTDIR }}
key: ${{ runner.os }}-bats-file-${{ inputs.file-version }}
key: ${{ runner.os }}-${{ runner.arch }}-bats-file-${{ inputs.file-version }}

- name: "Download and install Bats-file"
if: inputs.file-install == 'true' && steps.file-cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit f430596

Please sign in to comment.