Skip to content

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 26.1.4+incompatible in the go_modules group #61

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 26.1.4+incompatible in the go_modules group

build(deps): bump github.com/docker/docker from 25.0.5+incompatible to 26.1.4+incompatible in the go_modules group #61

Workflow file for this run

name: Build Snapshots
on:
push:
branches:
- "master"
pull_request:
branches:
- master
jobs:
goreleaser:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --snapshot --clean
env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}