Skip to content

ci(deps): bump goreleaser/goreleaser-action from 5 to 6 #333

ci(deps): bump goreleaser/goreleaser-action from 5 to 6

ci(deps): bump goreleaser/goreleaser-action from 5 to 6 #333

Workflow file for this run

# SPDX-FileCopyrightText: Copyright 2024 Prasad Tengse
# SPDX-License-Identifier: MIT
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: lint
on:
push:
pull_request:
workflow_dispatch:
permissions: {}
jobs:
lint:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.os }}
permissions:
contents: read
pull-requests: read
checks: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@v5
with:
cache: false
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
only-new-issues: true