Skip to content

Commit ee473dc

Browse files
committed
ci: add GitGuardian secret scanning workflow (v0.7.33)
1 parent 2d7eba6 commit ee473dc

3 files changed

Lines changed: 29 additions & 2 deletions

File tree

.github/workflows/gitguardian.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: GitGuardian scan
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
scanning:
11+
name: GitGuardian scan
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
16+
steps:
17+
- uses: actions/checkout@v6
18+
with:
19+
fetch-depth: 0
20+
21+
- name: GitGuardian scan
22+
uses: GitGuardian/ggshield-action@v1
23+
env:
24+
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
25+
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
26+
GITHUB_DEFAULT_BRANCH: ${{ github.event.repository.default_branch }}
27+
GITGUARDIAN_API_KEY: ${{ secrets.GITGUARDIAN_API_KEY }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "kwtsms"
3-
version = "0.7.32"
3+
version = "0.7.33"
44
description = "Python client for kwtSMS, the Kuwait SMS gateway trusted by top businesses to deliver messages worldwide, with private Sender ID, free API testing, and non-expiring credits."
55
readme = "README.md"
66
requires-python = ">=3.8"

src/kwtsms/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@
2323

2424
__all__ = ["KwtSMS", "AsyncKwtSMS", "normalize_phone", "clean_message",
2525
"validate_phone_input", "parse_webhook"]
26-
__version__ = "0.7.32"
26+
__version__ = "0.7.33"

0 commit comments

Comments
 (0)