Skip to content

Bump actions/checkout from 4.2.2 to 4.3.0 in the actions group #11

Bump actions/checkout from 4.2.2 to 4.3.0 in the actions group

Bump actions/checkout from 4.2.2 to 4.3.0 in the actions group #11

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
permissions: {} # No default permissions
env:
GO_VERSION: '1.23.4'
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Test
run: |
make lint
make test
make build