Skip to content

build(deps): bump actions/setup-go from 4.1.0 to 5.0.0 #74

build(deps): bump actions/setup-go from 4.1.0 to 5.0.0

build(deps): bump actions/setup-go from 4.1.0 to 5.0.0 #74

Workflow file for this run

name: ci
on:
push:
jobs:
lint-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ".go-version"
- name: Setup golangci-lint
run: |-
download=https://raw.githubusercontent.com/golangci/golangci-lint/9a8a056e9fe49c0e9ed2287aedce1022c79a115b/install.sh # v1.52.2
curl -sSf "$download" | sh -s v1.51.2
./bin/golangci-lint version
- run: make check
check-deps-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ".go-version"
- run: make check-mod
test-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ".go-version"
- run: make test
build-go:
runs-on: ubuntu-latest
env:
GO_TAGS: ''
GO111MODULE: 'on'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: ".go-version"
- run: make dev
permissions:
contents: read