Skip to content

Commit 954e293

Browse files
Add dependabot (#77)
1 parent 0e08f8f commit 954e293

3 files changed

Lines changed: 29 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Dependabot
2+
3+
version: 2
4+
5+
enable-beta-ecosystems: true
6+
7+
updates:
8+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
- package-ecosystem: "julia" # See documentation for possible values
14+
# # To get started with Dependabot version updates, you'll need to specify which
15+
# package ecosystems to update and where the package manifests are located.
16+
# Please see the documentation for all configuration options:
17+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
18+
directory: "/" # Location of package manifests
19+
schedule:
20+
interval: "weekly"

.github/workflows/TagBot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: TagBot
2+
23
on:
34
issue_comment:
45
types:
56
- created
67
workflow_dispatch:
8+
79
jobs:
810
TagBot:
911
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: CI
2+
23
on:
34
pull_request:
45
branches:
@@ -7,9 +8,11 @@ on:
78
branches:
89
- master
910
tags: '*'
11+
1012
permissions:
1113
actions: write
1214
contents: read
15+
1316
jobs:
1417
test:
1518
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -21,16 +24,16 @@ jobs:
2124
os: [ubuntu-latest, windows-latest]
2225
arch: [x64]
2326
steps:
24-
- uses: actions/checkout@v4
25-
- uses: julia-actions/setup-julia@v2
27+
- uses: actions/checkout@v6
28+
- uses: julia-actions/setup-julia@v3
2629
with:
2730
version: ${{ matrix.version }}
2831
arch: ${{ matrix.arch }}
29-
- uses: julia-actions/cache@v1
32+
- uses: julia-actions/cache@v3
3033
- uses: julia-actions/julia-buildpkg@v1
3134
- uses: julia-actions/julia-runtest@v1
3235
- uses: julia-actions/julia-processcoverage@v1
33-
- uses: codecov/codecov-action@v5
36+
- uses: codecov/codecov-action@v6
3437
with:
3538
files: lcov.info
3639
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)