Skip to content

Bump actions/upload-artifact from 4.3.3 to 4.3.4 in the actions group… #605

Bump actions/upload-artifact from 4.3.3 to 4.3.4 in the actions group…

Bump actions/upload-artifact from 4.3.3 to 4.3.4 in the actions group… #605

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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
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