Skip to content

Commit 2f121e3

Browse files
authored
Merge branch 'main' into feature/fassets-connector-implementation
2 parents de9b2f7 + fe1aea3 commit 2f121e3

File tree

5 files changed

+31
-2
lines changed

5 files changed

+31
-2
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @dineshpinto

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for uv
4+
- package-ecosystem: "uv"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
groups:
9+
uv-all:
10+
patterns:
11+
- "*"
12+
# Enable version updates for GitHub Actions
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
groups:
18+
actions-all:
19+
patterns:
20+
- "*"

.github/workflows/lint.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: ["main"]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
lint:
1114
runs-on: "ubuntu-latest"
@@ -15,7 +18,7 @@ jobs:
1518

1619
# Set up Python environment
1720
- name: Set up uv
18-
uses: astral-sh/setup-uv@v5
21+
uses: astral-sh/setup-uv@v6
1922
with:
2023
version: "latest"
2124

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: ["main"]
88

9+
permissions:
10+
contents: read
11+
912
jobs:
1013
test:
1114
runs-on: "ubuntu-latest"
@@ -35,7 +38,7 @@ jobs:
3538

3639
# Set up Python environment
3740
- name: Set up uv
38-
uses: astral-sh/setup-uv@v5
41+
uses: astral-sh/setup-uv@v6
3942
with:
4043
version: "latest"
4144

uv.lock

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

0 commit comments

Comments
 (0)