We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cache Terraform plugins and modules
To speed up CI.
No response
The text was updated successfully, but these errors were encountered:
I am using github/cache action to achieve this (I have not had time to thoroughly asses the impact).
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 with: save-always: true path: ~/.local/share/aquaproj-aqua key: test-modules-v1-aqua-installer-${{runner.os}}-${{runner.arch}}-${{hashFiles('**/aqua/**/*.yaml')}} # Change key restore-keys: | test-modules-v1-aqua-installer-${{runner.os}}-${{runner.arch}}-
and
- name: Cache Terraform uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4 with: path: | ${{ steps.target-config.outputs.working_directory }}/.terraform/ key: ${{ steps.working_directory_name.outputs.working_directory }}-${{ runner.os }}-terraform-${{ hashFiles('${{ steps.target-config.outputs.working_directory }}/.terraform.lock.hcl') }} restore-keys: | ${{ steps.working_directory_name.outputs.working_directory }}-${{ runner.os }}-terraform-
Sorry, something went wrong.
No branches or pull requests
Feature Overview
Cache Terraform plugins and modules
Why is the feature needed?
To speed up CI.
Example Code
No response
Note
The text was updated successfully, but these errors were encountered: