Skip to content

Commit 7959443

Browse files
authored
Merge pull request #96 from aserto-dev/upd-buf
upd-buf
2 parents fd3681f + d4f8a76 commit 7959443

File tree

4 files changed

+23
-17
lines changed

4 files changed

+23
-17
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ GOOS := $(shell go env GOOS)
1010
GOARCH := $(shell go env GOARCH)
1111
GOPRIVATE := "github.com/aserto-dev"
1212

13-
BIN_DIR := ./bin
14-
EXT_DIR := ${PWD}./.ext
13+
BIN_DIR := ${PWD}/bin
14+
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)