Skip to content

[NPM] Only count evicts on adding to process cache #21894

[NPM] Only count evicts on adding to process cache

[NPM] Only count evicts on adding to process cache #21894

Workflow file for this run

name: "Run Go Mod Tidy And Generate Licenses"
on:
pull_request:
types:
- labeled
workflow_dispatch:
inputs:
pr_number:
description: 'PR number'
required: true
type: number
permissions:
contents: write
jobs:
mod_tidy_and_generate_licenses:
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' && contains(github.event.pull_request.labels.*.name, 'dependencies-go')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Checkout PR
# run only if triggered manually, otherwise we are already on the right branch and we won't have `pr_number`
if: ${{ github.event_name == 'workflow_dispatch' }}
run: gh pr checkout ${{ github.event.inputs.pr_number }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install go
uses: actions/setup-go@v3
with:
go-version-file: '.go-version'
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.9.12'
cache: 'pip'
- name: Install python requirements.txt
run: python3 -m pip install -r requirements.txt
- name: Go mod tidy
run: inv -e tidy-all
- name: Update LICENSE-3rdparty.csv
if: ${{ github.event_name == 'workflow_dispatch' || !contains(github.event.pull_request.labels.*.name, 'dependencies-go-tools') }}
run: |
inv -e install-tools
inv -e generate-licenses
- name: Update mocks
if: ${{ github.event_name == 'workflow_dispatch' || !contains(github.event.pull_request.labels.*.name, 'dependencies-go-tools') }}
run:
inv -e security-agent.gen-mocks # generate both security agent and process mocks
- uses: stefanzweifel/git-auto-commit-action@v4
id: autocommit
with:
commit_message: Auto-generate go.sum and LICENSE-3rdparty.csv changes
- name: changes
run: |
echo "Changes detected: ${{ steps.autocommit.outputs.changes_detected }}"