Skip to content

Bump actions/checkout from 4 to 6 #7

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #7

Workflow file for this run

name: release

Check failure on line 1 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yaml

Invalid workflow file

(Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
createRelease:
needs: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}