Skip to content

Bump actions/checkout from 4.2.2 to 5.0.0 #372

Bump actions/checkout from 4.2.2 to 5.0.0

Bump actions/checkout from 4.2.2 to 5.0.0 #372

Workflow file for this run

on: [push, pull_request]
name: Test
permissions:
contents: read
jobs:
test:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.24', '1.23', '1.22', '1.21']
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Setup Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...