Skip to content

chore(deps): update actions/checkout action to v4.2.0 #261

chore(deps): update actions/checkout action to v4.2.0

chore(deps): update actions/checkout action to v4.2.0 #261

Workflow file for this run

name: Flaky Build Finder Tests
on:
pull_request:
branches:
- 'master'
paths:
- 'infra/utils/fbf/**'
- '.github/workflows/go-fbf-test.yml'
concurrency:
group: '${{github.workflow}}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
unit:
name: ${{ matrix.operating-system }} unit tests
runs-on: ${{ matrix.operating-system }}
defaults:
run:
shell: bash
working-directory: 'infra/utils/fbf'
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version-file: infra/utils/fbf/go.mod
cache-dependency-path: infra/utils/fbf/go.sum
- run: |-
go test ./... -v