Skip to content

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0 #391

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0 #391

Workflow file for this run

name: CI
on: [push, pull_request]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.mod
- name: Cache go modules
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Run unit tests
run: go test ./v2 -v -coverprofile=cov.out
- name: Run integration tests
run: go test ./internal/integration/v2 -tags integration -v -coverpkg="github.com/pandatix/nvdapi/v2" -coverprofile=cov-tf.out
env:
API_KEY: ${{ secrets.API_KEY }}
if: github.event_name != 'pull_request'
- name: Merge coverprofiles
run: tail -n +2 cov-tf.out >> cov.out
if: github.event_name != 'pull_request'
- name: Upload coverage to Coveralls
uses: shogo82148/actions-goveralls@785c9d68212c91196d3994652647f8721918ba11 # v1.9.0
with:
path-to-profile: cov.out
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.mod
- name: go-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1