Skip to content

Bump golang.org/x/text from 0.10.0 to 0.11.0 (#776) #613

Bump golang.org/x/text from 0.10.0 to 0.11.0 (#776)

Bump golang.org/x/text from 0.10.0 to 0.11.0 (#776) #613

Workflow file for this run

name: Semgrep
on:
pull_request_target: {}
push:
branches: ["main"]
schedule:
- cron: '30 0 1,15 * *' # Scheduled for 00:30 UTC on both the 1st and 15th of the month.
jobs:
semgrep:
name: Scan
runs-on: ubuntu-latest
container:
image: returntocorp/semgrep
# Skip any PR created by dependabot or snyk to avoid permission issues.
if: (github.actor != 'dependabot[bot]' && github.actor != 'snyk-bot')
steps:
- uses: actions/checkout@v3
- run: semgrep ci
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}