Skip to content

docs: added helmper to adopters list (#640) #27

docs: added helmper to adopters list (#640)

docs: added helmper to adopters list (#640) #27

Workflow file for this run

name: "[Informing] Check dependencies"
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
permissions: read-all
jobs:
check-deps:
name: "Check dependencies"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version: "1.22"
check-latest: true
- name: Check go.mod
shell: bash
run: |
# there should be no go.mod changes
go mod tidy
git diff --exit-code