Skip to content

Bump the minor-patch group across 1 directory with 2 updates #392

Bump the minor-patch group across 1 directory with 2 updates

Bump the minor-patch group across 1 directory with 2 updates #392

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request: {}
permissions: {}
jobs:
build:
name: build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: Build
run: |
make build
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: Test
run: |
make test