diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c40c34c..e304172 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,19 +1,19 @@ # This GitHub action can publish assets for release when a tag is created. # Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0). # -# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your +# This uses an action (hashicorp/ghaction-import-gpg) that assumes you set your # private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE` # secret. If you would rather own your own GPG handling, please fork this action # or use an alternative one for key handling. # -# You will need to pass the `--batch` flag to `gpg` in your signing step +# You will need to pass the `--batch` flag to `gpg` in your signing step # in `goreleaser` to indicate this is being used in a non-interactive mode. # name: Release on: push: tags: - - 'v*' + - v* jobs: goreleaser: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1eb1551..f44b70c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,12 @@ name: Test on: pull_request: paths-ignore: - - 'README.md' + - README.md push: paths-ignore: - - 'README.md' + - README.md # For systems with an upstream API that could drift unexpectedly (like most SaaS systems, etc.), - # we recommend testing at a regular interval not necessarily tied to code changes. This will + # we recommend testing at a regular interval not necessarily tied to code changes. This will # ensure you are alerted to something breaking due to an API change, even if the code did not # change. # schedule: @@ -93,12 +93,12 @@ jobs: matrix: # list whatever Terraform versions here you would like to support terraform: - - '0.12.*' - - '0.13.*' - - '0.14.*' - - '0.15.*' - - '1.0.*' - - '1.1.*' + - 0.12.* + - 0.13.* + - 0.14.* + - 0.15.* + - 1.0.* + - 1.1.* services: remotehost: image: ghcr.io/tenstad/remotehost:${{ github.sha }} @@ -109,7 +109,7 @@ jobs: steps: - name: Install unzip run: apt-get update && apt-get install -y unzip - + - uses: hashicorp/setup-terraform@v3 with: terraform_version: ${{ matrix.terraform }}