Skip to content

Bump thanosio/thanos from v0.34.1 to v0.36.1 in /docker #389

Bump thanosio/thanos from v0.34.1 to v0.36.1 in /docker

Bump thanosio/thanos from v0.34.1 to v0.36.1 in /docker #389

Workflow file for this run

# Current module version is 0.14.5, when upgrading please run a full search / replace.
name: Verify
on:
push:
branches:
- main
pull_request:
jobs:
## Verify module, terraform validate runs only on examples
verify_module:
name: Verify module
strategy:
matrix:
terraform: [1.3.2]
runs-on: ubuntu-latest
container:
image: hashicorp/terraform:${{ matrix.terraform }}
steps:
- uses: actions/checkout@v4
- name: init terraform
run: terraform init -get -backend=false -input=false
- name: check formatting
run: terraform fmt -recursive -check=true -write=false
verify_examples:
## Verify examples, terraform fmt runs only on module version.
name: Verify examples
strategy:
matrix:
terraform: [1.3.2, latest]
example: ["default"]
defaults:
run:
working-directory: examples/${{ matrix.example }}
runs-on: ubuntu-latest
container:
image: hashicorp/terraform:${{ matrix.terraform }}
steps:
- uses: actions/checkout@v4
- name: init terraform example
run: terraform init -get -backend=false -input=false
- name: validate terraform
run: terraform validate