fix(deps): update module github.com/moby/buildkit to v0.18.0 #1395
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Compile Binaries | |
on: | |
push: | |
branches: | |
- master | |
- "release/**" | |
tags-ignore: | |
- '*' | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- '**.go' | |
- go.mod | |
- '.github/workflows/**' | |
- '!**_test.go' | |
env: | |
GOPROXY: https://proxy.golang.org,direct | |
GO_VERSION: "1.22" | |
jobs: | |
compile: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: release --rm-dist --skip-publish --snapshot --skip-sign |