Skip to content

Commit 223541b

Browse files
committed
chore(ci): cleanup actions and add dependabot
1 parent 2f4fc0b commit 223541b

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
day: friday
8+
time: "12:00"
9+
timezone: "Europe/Zurich"
310
- package-ecosystem: pip
411
directory: "/"
512
schedule:

.github/workflows/ghcr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
contents: read
2828

2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3131

3232
- name: Build image
3333
run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}"

.github/workflows/pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
- name: Setup Python
1414
uses: actions/setup-python@v1
1515
with:

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
tests:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
- name: Set UID
1313
run: echo "UID=$(id --user)" > .env
1414
- name: Build the containers
@@ -20,11 +20,11 @@ jobs:
2020
commit-lint:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@v4
2424
- name: Setup Python
25-
uses: actions/setup-python@v1
25+
uses: actions/setup-python@v5
2626
with:
27-
python-version: '3.8'
27+
python-version: '3.12'
2828
- name: Install gitlint
2929
run: pip install gitlint
3030
- name: Run gitlint

0 commit comments

Comments
 (0)