Skip to content

Commit bb1e5ee

Browse files
authored
ci: add dependabot (#100)
also updates some actions and ENV vars
1 parent 55121c9 commit bb1e5ee

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Set update schedule for GitHub Actions
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
# Check for updates to GitHub Actions every week
8+
interval: "weekly"

.github/workflows/CI.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
push:
44
branches:
55
- main
6-
tags: "*"
6+
tags: ["*"]
77
pull_request:
88
workflow_dispatch:
99
concurrency:
@@ -29,7 +29,7 @@ jobs:
2929
arch:
3030
- x64
3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333
- uses: julia-actions/setup-julia@v1
3434
with:
3535
version: ${{ matrix.version }}
@@ -40,13 +40,13 @@ jobs:
4040
with:
4141
coverage: "false"
4242
env:
43-
JULIA_NUM_THREADS: "2"
43+
JULIA_NUM_THREADS: "auto"
4444
docs:
4545
name: Documentation
4646
runs-on: ubuntu-latest
4747
timeout-minutes: 40
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- uses: julia-actions/setup-julia@v1
5151
with:
5252
version: 1

.github/workflows/Format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name: Format
33
on:
44
push:
55
branches:
6-
- 'main'
7-
- 'release-'
8-
tags: '*'
6+
- "main"
7+
- "release-"
8+
tags: ["*"]
99
pull_request:
1010

1111
jobs:
1212
format:
1313
name: "Format Check"
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- uses: julia-actions/setup-julia@v1
1818
with:
1919
version: 1

0 commit comments

Comments
 (0)