Skip to content

build(deps): bump actions/setup-go from 6.0.0 to 6.1.0 #344

build(deps): bump actions/setup-go from 6.0.0 to 6.1.0

build(deps): bump actions/setup-go from 6.0.0 to 6.1.0 #344

Workflow file for this run

---
name: tests
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
test:
name: lint
runs-on: ubuntu-latest
steps:
- id: goversion
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ steps.goversion.outputs.goversion }}
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: tests
run: |
make verify
make test