Skip to content

Commit

Permalink
ci: add dependabot (#100)
Browse files Browse the repository at this point in the history
also updates some actions and ENV vars
  • Loading branch information
storopoli authored Dec 22, 2023
1 parent 55121c9 commit bb1e5ee
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 1,8 @@
# Set update schedule for GitHub Actions
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@ on:
push:
branches:
- main
tags: "*"
tags: ["*"]
pull_request:
workflow_dispatch:
concurrency:
Expand All @@ -29,7 29,7 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
Expand All @@ -40,13 40,13 @@ jobs:
with:
coverage: "false"
env:
JULIA_NUM_THREADS: "2"
JULIA_NUM_THREADS: "auto"
docs:
name: Documentation
runs-on: ubuntu-latest
timeout-minutes: 40
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: 1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/Format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 3,17 @@ name: Format
on:
push:
branches:
- 'main'
- 'release-'
tags: '*'
- "main"
- "release-"
tags: ["*"]
pull_request:

jobs:
format:
name: "Format Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: 1
Expand Down

0 comments on commit bb1e5ee

Please sign in to comment.