build(deps): Bump actions/checkout from 4.1.6 to 4.2.2 #126
This file contains 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
--- | |
# This workflow uses actions that are not certified by GitHub. They are provided | |
# by a third-party and are governed by separate terms of service, privacy | |
# policy, and support documentation. | |
name: Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
terraform: | |
runs-on: ubuntu-latest | |
name: Integration (Terraform ${{ matrix.terraform_version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
terraform_version: | |
- "1.6" | |
- "1.7" | |
- "1.8" | |
- "1.9" | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block # audit | |
allowed-endpoints: > | |
api.github.com:443 | |
checkpoint-api.hashicorp.com:443 | |
ec2.us-east-2.amazonaws.com:443 | |
get.opentofu.org:443 | |
github.com:443 | |
golang.org:443 | |
objects.githubusercontent.com:443 | |
proxy.golang.org:443 | |
registry.terraform.io:443 | |
releases.hashicorp.com:443 | |
storage.googleapis.com:443 | |
sts.us-east-2.amazonaws.com:443 | |
- name: Checkout Source | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: ">= 1.22.1" | |
cache: true | |
- name: Install Terraform ${{ matrix.terraform_version }} | |
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2 | |
with: | |
terraform_version: ${{ matrix.terraform_version }} | |
terraform_wrapper: false | |
- name: Run module tests with Terraform ${{ matrix.terraform_version }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
run: | | |
cd tests && TF_PATH=$(which terraform) make | |
opentofu: | |
runs-on: ubuntu-latest | |
name: Integration (OpenTofu ${{ matrix.opentofu_version }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
opentofu_version: | |
- "1.6" | |
- "1.7" | |
- "1.8" | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block # audit | |
allowed-endpoints: > | |
api.github.com:443 | |
checkpoint-api.hashicorp.com:443 | |
ec2.us-east-2.amazonaws.com:443 | |
get.opentofu.org:443 | |
github.com:443 | |
golang.org:443 | |
objects.githubusercontent.com:443 | |
proxy.golang.org:443 | |
registry.opentofu.org:443 | |
releases.hashicorp.com:443 | |
storage.googleapis.com:443 | |
sts.us-east-2.amazonaws.com:443 | |
- name: Checkout Source | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Install Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: ">= 1.22.1" | |
cache: true | |
- name: Install OpenTofu ${{ matrix.opentofu_version }} | |
uses: opentofu/setup-opentofu@ae80d4ecaab946d8f5ff18397fbf6d0686c6d46a # v1.0.3 | |
with: | |
tofu_version: ~${{ matrix.opentofu_version }} | |
tofu_wrapper: false | |
- name: Run module tests with OpenTofu ${{ matrix.opentofu_version }} | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REGION: ${{ vars.AWS_REGION }} | |
run: | | |
cd tests && TF_PATH=$(which tofu) make |