Bump golang.org/x/net from 0.17.0 to 0.19.0 (#1) #2
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
- '*' | |
permissions: read-all | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '>=1.21.0' | |
- name: Build | |
run: | | |
make | |
- name: Test | |
run: | | |
go test -covermode=count -coverprofile=coverage.out -v ./... | |
- name: Convert coverage to lcov | |
uses: jandelgado/[email protected] | |
- name: Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.github_token }} | |
path-to-lcov: coverage.lcov | |
- name: gosec | |
run: | | |
go install github.com/securego/gosec/v2/cmd/gosec@latest | |
gosec ./... | |
- name: golangci-lint | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/[email protected] | |
golangci-lint run --skip-files='.*_test.go' | |
- name: Archive stuff | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-artefacts | |
path: | | |
littleauth | |
build-and-push: | |
needs: test | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
if: contains(github.ref, 'refs/tags') | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download artefacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-artefacts | |
- name: Generate SBOM | |
uses: CycloneDX/gh-gomod-generate-sbom@v1 | |
with: | |
version: v1 | |
args: mod -licenses -json -output bom.json | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
littleauth | |
bom.json | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |