Skip to content

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #17

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0

chore(deps): bump actions/setup-go from 5.0.2 to 5.1.0 #17

Workflow file for this run

name: Go
on:
pull_request:
paths:
- ".github/workflows/go.yaml"
- "go/**"
# Prevent duplicate runs due to Graphite
# https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Git Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 4.2.1
with:
submodules: true
- name: Setup Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # 5.1.0
with:
go-version-file: go/go.mod
- name: Test
working-directory: go
run: go test ./...