Skip to content

Commit eeadf38

Browse files
authored
Update Dependabot configuration and GitHub Actions to use v4 of upload-artifact (#34)
1 parent 9100aa1 commit eeadf38

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,23 @@ updates:
1717
major:
1818
update-types:
1919
- "major"
20-
open-pull-requests-limit: 5
2120
assignees:
2221
- "zoola969"
2322
reviewers:
2423
- "zoola969"
2524
commit-message:
2625
prefix: "deps"
2726
include: "scope"
27+
28+
- package-ecosystem: "github-actions"
29+
directory: "/"
30+
schedule:
31+
interval: "weekly"
32+
groups:
33+
minor-and-patch:
34+
update-types:
35+
- "patch"
36+
- "minor"
37+
major:
38+
update-types:
39+
- "major"

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: uv build
2222

2323
- name: Store package distributions
24-
uses: actions/upload-artifact@v3
24+
uses: actions/upload-artifact@v4
2525
with:
2626
name: python-package-distributions
2727
path: dist/

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
pull_request:
88
branches: ["master"]
99

10+
permissions:
11+
contents: read
12+
1013
jobs:
1114
tests:
1215
name: "Python ${{ matrix.python-version }}"

0 commit comments

Comments
 (0)