Bump golang.org/x/text from 0.19.0 to 0.20.0 #88
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: build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
TOKEN: ${{secrets.GITHUB_TOKEN}} | |
jobs: | |
test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1 | |
- name: Set up Go | |
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe #v4.1.0 | |
with: | |
go-version: 1.21.4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@74483a38d39275f33fcff5f35b679b5ca4a26a99 #v2.22.5 | |
with: | |
languages: go | |
- name: Run build | |
run: go build github.com/Azure/golden | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@74483a38d39275f33fcff5f35b679b5ca4a26a99 #v2.22.5 | |
- name: Run tests | |
run: go test -v github.com/Azure/golden/... | |
- name: Run Gosec Security Scanner | |
uses: securego/gosec@55d79496019a560e16e73e1948dee20a1fad631a #v2.18.2 |