Skip to content

Commit 215f71a

Browse files
committed
vbump
1 parent 09d7668 commit 215f71a

4 files changed

Lines changed: 13 additions & 7 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
- uses: actions/checkout@v4
6262

6363
- name: Scan service dependencies
64-
uses: aquasecurity/trivy-action@0.34.2
64+
uses: aquasecurity/trivy-action@v0.35.0
6565
with:
6666
scan-type: fs
6767
scan-ref: service/
@@ -70,7 +70,7 @@ jobs:
7070
exit-code: 1
7171

7272
- name: Scan SDK dependencies
73-
uses: aquasecurity/trivy-action@0.34.2
73+
uses: aquasecurity/trivy-action@v0.35.0
7474
with:
7575
scan-type: fs
7676
scan-ref: sdk/
@@ -90,7 +90,7 @@ jobs:
9090
docker build -t daikon/sentinel-auth:ci service/
9191
9292
- name: Scan container image
93-
uses: aquasecurity/trivy-action@0.34.2
93+
uses: aquasecurity/trivy-action@v0.35.0
9494
with:
9595
image-ref: daikon/sentinel-auth:ci
9696
format: table
@@ -107,7 +107,7 @@ jobs:
107107
run: docker build -t daikon/sentinel-admin:ci admin/
108108

109109
- name: Scan admin container image
110-
uses: aquasecurity/trivy-action@0.34.2
110+
uses: aquasecurity/trivy-action@v0.35.0
111111
with:
112112
image-ref: daikon/sentinel-admin:ci
113113
format: table

sdk/tests/test_permissions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def test_expiry(self, monkeypatch):
179179
def test_invalidate_by_prefix(self):
180180
cache = _TTLCache(ttl=60)
181181
cache.set(("can", "tok1", "doc", "123", "view"), True)
182-
cache.set(("accessible", "tok1", "doc", "view", "ws1", None), ([],True))
182+
cache.set(("accessible", "tok1", "doc", "view", "ws1", None), ([], True))
183183
cache.set(("other", "x"), "keep")
184184
cache.invalidate("can", "accessible")
185185
assert cache.get(("can", "tok1", "doc", "123", "view")) is None

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)