Skip to content

Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.8 #71

Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.8

Bump gopkg.in/yaml.v2 from 2.2.4 to 2.2.8 #71

Workflow file for this run

name: Test
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v1
with:
go-version: 1.23
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: go test -v ./...