Skip to content

Bump docker/build-push-action from 4.1.1 to 6.8.0 #1125

Bump docker/build-push-action from 4.1.1 to 6.8.0

Bump docker/build-push-action from 4.1.1 to 6.8.0 #1125

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- master
jobs:
golangci:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: Get data from build cache
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Linter cache (Linux)
# * Build cache (Linux)
# * Build cache (Mac)
# * Build cache (Windows)
path: |
~/go/pkg/mod
~/.cache/golangci-lint
~/.cache/go-build
~/Library/Caches/go-build
~\AppData\Local\go-build
key: ${{ runner.os }}-go-linter-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-linter-${{ matrix.go-version }}-
- name: Run golangci-lint
run: make lint
if: env.GIT_DIFF