Skip to content

Bump github.com/rs/zerolog from 1.34.0 to 1.35.1 #2237

Bump github.com/rs/zerolog from 1.34.0 to 1.35.1

Bump github.com/rs/zerolog from 1.34.0 to 1.35.1 #2237

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
paths:
- '**.go'
- 'go.mod'
- '.github/workflows/tests.yml'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7
with:
go-version-file: 'go.mod'
- name: Install Task
uses: arduino/setup-task@c0bc642852239c2689f73f4ea6459c29405f3c52 # v3
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Go modules
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run quality checks and tests
run: task ci
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: go tool goveralls -coverprofile=coverage.out -service=github