Skip to content

Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0 #877

Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0

Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0 #877

Workflow file for this run

name: Semgrep
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main
schedule:
- cron: "30 0 1,15 * *"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
run:
name: Check for Vulnerabilities
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
steps:
- if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group'
run: exit 0 # Skip unnecessary test runs for dependabot and merge queues.
- name: Checkout Code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Run Semgrep
run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_TOKEN }}