Skip to content

build(deps): bump anchore/sbom-action from 0.17.2 to 0.17.3 #290

build(deps): bump anchore/sbom-action from 0.17.2 to 0.17.3

build(deps): bump anchore/sbom-action from 0.17.2 to 0.17.3 #290

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Display Go version
run: go version
- name: Build
run: go build ./cmd/vault-plugin-secrets-gitlab
- name: Test
run: go test -cover -coverprofile=coverage.out
env:
GITLAB_SERVICE_ACCOUNT_URL: ${{ vars.GITLAB_SERVICE_ACCOUNT_URL }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.out
flags: unittests