Skip to content

Do not attempt to scan buildkit caches, Also check size of uncompressed and zstd compressed layers #1789

Do not attempt to scan buildkit caches, Also check size of uncompressed and zstd compressed layers

Do not attempt to scan buildkit caches, Also check size of uncompressed and zstd compressed layers #1789

Workflow file for this run

################################################################################
# This file is AUTOGENERATED with <https://github.com/sapcc/go-makefile-maker> #
# Edit Makefile.maker.yaml instead. #
################################################################################
# SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company
# SPDX-License-Identifier: Apache-2.0
name: Checks
"on":
push:
branches:
- master
pull_request:
branches:
- '*'
workflow_dispatch: {}
permissions:
checks: write
contents: read
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
check-latest: true
go-version: 1.26.3
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
- name: Delete pre-installed shellcheck
run: sudo rm -f "$(which shellcheck)"
- name: Run shellcheck
run: make run-shellcheck
- name: Dependency Licenses Review
run: make check-dependency-licenses
- name: Check for spelling errors
uses: crate-ci/typos@v1
env:
CLICOLOR: "1"
- name: Check if source code files have license header
run: make check-addlicense
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v6
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck -format text ./...