chore(scaffold): install tfskel via install.sh in reusable workflow#104
Merged
chore(scaffold): install tfskel via install.sh in reusable workflow#104
Conversation
Replaces the `actions/setup-go` + `go install` pair with a curl pipe to the repo's install.sh. Drops the Go toolchain provisioning step entirely, shrinking the plan job. Behavior is unchanged: the same tfskel version selected by `inputs.tfskel_version` is installed (with `latest` mapping to the script's default by unsetting TFSKEL_VERSION).
ishuar
pushed a commit
that referenced
this pull request
May 6, 2026
🤖 I have created a release *beep* *boop* --- ## [0.8.4](v0.8.3...v0.8.4) (2026-05-06) ### ✨ Features * **scaffold:** add terraform_extra_secrets input to reusable workflow ([#103](#103)) ([1cfcd13](1cfcd13)) ### 📦 Other Changes * extract version line via grep in install success message ([#101](#101)) ([7465753](7465753)) * **scaffold:** install tfskel via install.sh in reusable workflow ([#104](#104)) ([3c19128](3c19128)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What and why
Switches the reusable Terraform plan/apply workflow to install
tfskelvia the repo'sinstall.shscript instead ofgo install.actions/setup-gostep (no Go toolchain needed on the runner anymore).go install github.com/ishuar/tfskel@<version>with acurl ... | bashinvocation ofinstall.sh, passingTFSKEL_VERSION/INSTALL_DIRvia env.latestmaps to the script's default by unsettingTFSKEL_VERSIONbefore the curl pipe.Behavior is unchanged from the caller's perspective: the same
inputs.tfskel_versionis honored, andtfskel review planruns the same way.Fixes #
Notes for reviewers
internal/templates/files/github/is touched.