Skip to content

Bump golangci/golangci-lint-action from 6.3.0 to 6.3.1 in the actions group #712

Bump golangci/golangci-lint-action from 6.3.0 to 6.3.1 in the actions group

Bump golangci/golangci-lint-action from 6.3.0 to 6.3.1 in the actions group #712

Workflow file for this run

name: ci
on:
push:
branches:
- "main"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
with:
go-version-file: './go.mod'
check-latest: true
- name: Setup Bats and bats libs
uses: bats-core/bats-action@2104b40bb7b6c2d5110b23a26b0bf265ab8027db # v3.0.0
- name: Verify go.mod is sane
run: go mod tidy && git diff --no-patch --exit-code
- name: Install dependencies
run: go mod download
- name: Build
run: make
- name: Test
run: make test
- name: Create Integration Pre-Reqs
run: ./scripts/generate-test-chart.sh
- name: Upload helm-sigstore-test-0.1.0.tgz
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: helm-sigstore-test-0.1.0.tgz
path: |
helm-sigstore-test-0.1.0.tgz
helm-sigstore-test-0.1.0.tgz.prov
.gnupg/sigstore-secring.gpg
- name: Integration Test
run: make integration