diff --git a/.github/workflows/infra-apply.yml b/.github/workflows/infra-apply.yml index 0a9d170..0890545 100644 --- a/.github/workflows/infra-apply.yml +++ b/.github/workflows/infra-apply.yml @@ -46,7 +46,7 @@ jobs: shell: nix shell nixpkgs#sops --quiet --command bash {0} run: sops encrypt --output tfplan-encrypted tfplan - name: Upload encrypted plan artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: tfplan-encrypted-${{ github.event.inputs.tf-workspace }} path: ${{ github.workspace }}/infra/tfplan-encrypted @@ -65,7 +65,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download encrypted plan artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: tfplan-encrypted-${{ github.event.inputs.tf-workspace }} path: ${{ github.workspace }}/infra diff --git a/.github/workflows/infra-destroy.yml b/.github/workflows/infra-destroy.yml index e9f3ae4..e0cc116 100644 --- a/.github/workflows/infra-destroy.yml +++ b/.github/workflows/infra-destroy.yml @@ -36,7 +36,7 @@ jobs: shell: nix shell nixpkgs#sops --quiet --command bash {0} run: sops encrypt --output tfplan-encrypted tfplan - name: Upload encrypted plan artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: tfplan-destroy-encrypted-${{ github.event.inputs.tf-workspace }} path: ${{ github.workspace }}/infra/tfplan-encrypted @@ -54,7 +54,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Download encrypted plan artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: name: tfplan-destroy-encrypted-${{ github.event.inputs.tf-workspace }} path: ${{ github.workspace }}/infra