Bump golang.org/x/crypto from 0.20.0 to 0.21.0 #411
Workflow file for this run
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
name: Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
push: | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
# ensure the code builds... | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20.1' | |
id: go | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go mod download | |
- name: Build | |
run: | | |
go build -v . | |
test: | |
name: Matrix Test | |
needs: build | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
strategy: | |
fail-fast: false | |
matrix: | |
# list whatever Terraform versions here you would like to support | |
terraform: | |
- '1.1.*' | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.20.1' | |
id: go | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: ${{ matrix.terraform }} | |
terraform_wrapper: false | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Get dependencies | |
run: | | |
go mod download | |
# - name: TF acceptance tests | |
# timeout-minutes: 10 | |
# env: | |
# TF_ACC: "1" | |
# | |
# # Set whatever additional acceptance test env vars here. You can | |
# # optionally use data from your repository secrets using the | |
# # following syntax: | |
# # SOME_VAR: ${{ secrets.SOME_VAR }} | |
# | |
# run: | | |
# go test -v -cover ./internal/provider/ |