Skip to content

build(deps): bump honnef.co/go/tools from 0.6.0 to 0.6.1 #503

build(deps): bump honnef.co/go/tools from 0.6.0 to 0.6.1

build(deps): bump honnef.co/go/tools from 0.6.0 to 0.6.1 #503

Workflow file for this run

name: PR Check
on:
pull_request:
paths-ignore:
- 'charts/**'
- '*.md'
- 'LICENSE.md'
permissions:
contents: read
jobs:
go_version:
if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }}
outputs:
go_version: ${{ steps.go_version.outputs.GO_VERSION }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
- name: Find Go version
id: go_version
run: |
echo "GO_VERSION=$(grep golang .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT
test-pr:
runs-on: ubuntu-24.04
needs: go_version
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # ratchet:actions/setup-go@v5
with:
go-version: ${{ needs.go_version.outputs.go_version }}
cache-dependency-path: ./go.sum
- run: make test