Skip to content
This repository has been archived by the owner on Sep 19, 2023. It is now read-only.

Bump github.com/moby/buildkit from 0.10.6 to 0.11.6 #67

Bump github.com/moby/buildkit from 0.10.6 to 0.11.6

Bump github.com/moby/buildkit from 0.10.6 to 0.11.6 #67

Workflow file for this run

name: lint
on:
push:
branches-ignore:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out source code
uses: actions/checkout@v2
- name: Find Go version
id: go-version
run: |
printf "::set-output name=go-version::"
scripts/go-version
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ steps.go-version.outputs.go-version }}
- name: Lint code
uses: golangci/golangci-lint-action@v2
with:
version: latest
skip-go-installation: true