Skip to content

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.117.0 #378

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.117.0

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.117.0 #378

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 -tags unit,selfhosted,saas,local
env:
GITLAB_SERVICE_ACCOUNT_URL: ${{ vars.GITLAB_SERVICE_ACCOUNT_URL }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.out
flags: unittests