Skip to content

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0 #238

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0

build(deps): bump actions/setup-go from 5.1.0 to 5.2.0 #238

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@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version: ${{ steps.goversion.outputs.goversion }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: tests
run: |
make verify
make test