Refactor Github Action per b/485167538

This commit is contained in:
Ben Knutson
2026-02-18 16:50:42 +00:00
committed by Wiktor Niesiobędzki
parent 60ec6db9cd
commit 490d49bd3a
3 changed files with 17 additions and 12 deletions

View File

@@ -52,11 +52,11 @@ runs:
- name: Configure provider cache
shell: bash
run: |
echo 'plugin_cache_dir = "${{ env.TF_PLUGIN_CACHE_DIR }}"' \
echo 'plugin_cache_dir = "${TF_PLUGIN_CACHE_DIR}"' \
| tee -a /home/runner/.terraformrc
echo 'disable_checkpoint = true' \
| tee -a /home/runner/.terraformrc
mkdir -p ${{ env.TF_PLUGIN_CACHE_DIR }}
mkdir -p ${TF_PLUGIN_CACHE_DIR}
- name: Download lockfile
uses: actions/download-artifact@v4
with: