Skip to content

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#243) #297

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#243)

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#243) #297

Workflow file for this run

name: 'test'
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
workflow_dispatch:
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
runs-on: 'ubuntu-latest'
env:
CREDENTIALS: '${{ secrets.GOOGLE_CREDENTIALS }}'
GOOGLE_CLOUD_PROJECT: 'berglas-test'
GOOGLE_CLOUD_BUCKET: 'berglas-test-secrets'
GOOGLE_CLOUD_KMS_KEY: 'projects/berglas-test/locations/global/keyRings/my-keyring/cryptoKeys/my-key'
GOOGLE_CLOUD_SERVICE_ACCOUNT: 'berglas-test@berglas-test.iam.gserviceaccount.com'
steps:
- uses: 'actions/checkout@v3'
- uses: 'actions/setup-go@v3'
with:
go-version: '1.20'
- run: 'go mod download'
- run: 'make test'
if: '${{ !env.CREDENTIALS }}'
- uses: 'google-github-actions/auth@v0'
if: '${{ env.CREDENTIALS }}'
with:
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}'
- run: 'make test-acc'
if: '${{ env.CREDENTIALS }}'