Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 in the actions group #567

Bump actions/checkout from 4.1.4 to 4.1.5 in the actions group

Bump actions/checkout from 4.1.4 to 4.1.5 in the actions group #567

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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: './go.mod'
check-latest: true
- name: Setup Bats and bats libs
uses: bats-core/bats-action@472edde1138d59aca53ff162fb8d996666d21e4a # v2.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@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
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