housekeeping: Update module github.com/uber-go/tally/v4 to v4.1.16 #1744
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If the job fails, see clutch/tools/license-finder for instructions on approving a dependency. | |
name: license_review | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- backend/go.mod | |
- backend/go.sum | |
- .github/workflows/license_review.yml | |
- tools/license-finder/config/*.yml | |
jobs: | |
license-check: | |
runs-on: ubuntu-latest | |
env: | |
working-directory: ./tools/license-finder | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
id: setup-go | |
with: | |
go-version: 1.22.x | |
- name: Install Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Install license finder | |
run: gem install license_finder | |
- name: Run license finder | |
run: license_finder | |
working-directory: ${{env.working-directory}} |