Skip to content

Commit 9dbd131

Browse files
committed
upd ci
1 parent fbf7273 commit 9dbd131

File tree

4 files changed

+21
-15
lines changed

4 files changed

+21
-15
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ permissions:
1919
pull-requests: write
2020

2121
env:
22-
BUF_VERSION: "1.50.0"
22+
BUF_VERSION: "1.61.0"
2323

2424
jobs:
2525
build:

.github/workflows/gitleaks-check.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/gitleaks.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: gitleaks
2+
on:
3+
pull_request:
4+
push:
5+
workflow_dispatch:
6+
schedule:
7+
- cron: "0 4 * * *" # run once a day at 4 AM
8+
jobs:
9+
scan:
10+
name: gitleaks
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v6
14+
with:
15+
fetch-depth: 0
16+
- uses: gitleaks/gitleaks-action@v2
17+
env:
18+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19+
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ EXT_DIR := ${PWD}/.ext
1515
EXT_BIN_DIR := ${EXT_DIR}/bin
1616
EXT_TMP_DIR := ${EXT_DIR}/tmp
1717

18-
SVU_VER := 3.3.0
18+
SVU_VER := 3.3.0
1919
BUF_VER := 1.61.0
2020

2121
PROJECT := directory

0 commit comments

Comments
 (0)