Skip to content

Bump golang.org/x/crypto from 0.5.0 to 0.17.0 #24

Bump golang.org/x/crypto from 0.5.0 to 0.17.0

Bump golang.org/x/crypto from 0.5.0 to 0.17.0 #24

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
env:
GOPATH: ${{ github.workspace }}
GO111MODULE: on
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
runs-on: ubuntu-latest
strategy:
matrix:
# build and publish in parallel: linux/amd64, linux/arm64, darwin/amd64, darwin/arm64
goos: [linux, darwin]
goarch: [amd64, arm64]
steps:
- uses: actions/checkout@v3
with:
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- run: go version
- name: Install dependencies
run: |
go mod tidy
- name: Build
run: go build -o terraform-provider-internal