Skip to content

Bump github.com/sigstore/sigstore from 1.5.2 to 1.7.1 in /acceptance #278

Bump github.com/sigstore/sigstore from 1.5.2 to 1.7.1 in /acceptance

Bump github.com/sigstore/sigstore from 1.5.2 to 1.7.1 in /acceptance #278

Workflow file for this run

# Copyright 2022 Red Hat, Inc.
#
# 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.
#
# SPDX-License-Identifier: Apache-2.0
---
name: Lint
"on":
pull_request:
branches:
- main
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Restore Cache
uses: actions/cache/restore@v3
with:
key: main
path: '**'
- name: Setup Go environment
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version-file: 'package.json'
- name: Download go dependencies
run: |
go mod download
go mod download -modfile tools/go.mod
go mod download -modfile acceptance/go.mod
- name: Download NPM dependencies
run: npm ci
- name: Lint
run: make lint