Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-uv-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493

- name: Restore cached asdf tools
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
if: ${{ inputs.asdf-install }}
id: cache
with:
Expand All @@ -62,7 +62,7 @@ jobs:
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47

- name: Cache asdf tools
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
id: save-cache
if: ${{ inputs.asdf-install && steps.cache.outputs.cache-hit != 'true' }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-terraform-check-aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# our .tool-versions file and Makefile to install plugins from outside the default registry.
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47

- uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb
- uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
# If we've cached the asdf tools, restore them based on the hash of the .tool-versions file.
name: Restore cached asdf tools
id: cache
Expand All @@ -52,7 +52,7 @@ jobs:
export AWS_REGION=${{ inputs.region }}
make configure

- uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb
- uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
# If we didn't restore the asdf tools, save them based on the hash of the .tool-versions file.
id: save-cache
name: Cache asdf tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-terraform-check-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# our .tool-versions file and Makefile to install plugins from outside the default registry.
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47

- uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb
- uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
# If we've cached the asdf tools, restore them based on the hash of the .tool-versions file.
name: Restore cached asdf tools
id: cache
Expand All @@ -49,7 +49,7 @@ jobs:
export ARM_SUBSCRIPTION_ID=${{ secrets.TERRAFORM_CHECK_AZURE_SUBSCRIPTION_ID }}
make configure

- uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb
- uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
# If we didn't restore the asdf tools, save them based on the hash of the .tool-versions file.
id: save-cache
name: Cache asdf tools
Expand Down
Loading