Skip to content

build(deps): bump github.com/sumup/sumup-go from 0.9.0 to 0.10.0 #9

build(deps): bump github.com/sumup/sumup-go from 0.9.0 to 0.10.0

build(deps): bump github.com/sumup/sumup-go from 0.9.0 to 0.10.0 #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
GOLANGCI_LINT_VERSION: v2.5.0
permissions:
contents: write
pull-requests: write
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version-file: go.mod
- name: Test
run: go test -v -failfast -race -timeout 10m ./...
vulncheck:
name: Vulncheck
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: 'stable'
- name: govulncheck scan
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
make vulncheck-sarif
- name: Upload govulncheck results to GitHub Security tab
uses: github/codeql-action/upload-sarif@e12f0178983d466f2f6028f5cc7a6d786fd97f4b # v4.31.4
with:
sarif_file: "govulncheck.sarif"
category: "govulncheck"