Skip to content

Commit 3d4bf64

Browse files
committed
added dependabot and update action
1 parent bfad98c commit 3d4bf64

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
day: "tuesday"
8+
target-branch: "main"
9+
ignore:
10+
# ignore all patch updates since we are using ~=
11+
# this does not work for security updates
12+
- dependency-name: "*"
13+
update-types: ["version-update:semver-patch"]

.github/workflows/deploy_and_update_submodules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
submodules: recursive # Recursively checkout submodules
2222

0 commit comments

Comments
 (0)