Skip to content

Bump github.com/sony/gobreaker from 0.5.0 to 1.0.0 #14233

Bump github.com/sony/gobreaker from 0.5.0 to 1.0.0

Bump github.com/sony/gobreaker from 0.5.0 to 1.0.0 #14233

Workflow file for this run

name: docs
on:
push:
branches:
- main
tags:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
name: Documentation check
env:
GOBIN: /tmp/.bin
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/cache@v3
with:
path: .mdoxcache
key: ${{ runner.os }}-mdox-${{ hashFiles('docs/**/*.md', 'examples/**/*.md', 'mixin/**/*.md', '*.md') }}
restore-keys: |
${{ runner.os }}-mdox-
- name: Check docs
run: make check-docs
- name: Check examples
run: make check-examples