Skip to content

Bump github.com/rogpeppe/go-internal from 1.10.0 to 1.11.0 #247

Bump github.com/rogpeppe/go-internal from 1.10.0 to 1.11.0

Bump github.com/rogpeppe/go-internal from 1.10.0 to 1.11.0 #247

Workflow file for this run

name: pint ci
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fetch main branch
run: |
git fetch origin main
git checkout main
git fetch origin $GITHUB_HEAD_REF
git checkout $GITHUB_HEAD_REF --
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.5
cache: true
- name: Compile pint
run: make build
- name: Run pint ci
run: ./pint -c .github/pint/pint.hcl ci
env:
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}