Skip to content

Bump github.com/sigstore/rekor from 1.5.0 to 1.5.2 #497

Bump github.com/sigstore/rekor from 1.5.0 to 1.5.2

Bump github.com/sigstore/rekor from 1.5.0 to 1.5.2 #497

Workflow file for this run

#
# Copyright 2021 The Sigstore Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI-Tests
on: [push, pull_request]
jobs:
unit-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.x'
check-latest: true
cache: true
# - name: install ko
# run: |
# curl -L https://github.com/google/ko/releases/download/v0.8.3/ko_0.8.3_Linux_x86_64.tar.gz | tar xzf - ko && \
# chmod +x ./ko && sudo mv ko /usr/local/bin/
# - name: setup kind cluster
# run: |
# go install sigs.k8s.io/kind@v0.11.1
# kind create cluster
- name: Run Go unit tests
run: make test
- name: Run end-to-end tests
run: make e2e-test
license-check:
name: license boilerplate check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.x'
- name: Install addlicense
run: go install github.com/google/addlicense@latest
- name: Check license headers
run: |
set -e
addlicense -l apache -c 'The Sigstore Authors' -ignore "**/*.yaml" -ignore "**/Dockerfile" -v *
git diff --exit-code
golangci:
name: Run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25.x'
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
install-mode: goinstall
args: --timeout=10m