Skip to content

Commit 3528a5a

Browse files
authored
Add dependabot (#32)
1 parent 1a3c1f9 commit 3528a5a

File tree

2 files changed

+20
-4
lines changed

2 files changed

+20
-4
lines changed

.github/dependabot.yml

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

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919
os: ubuntu-latest
2020
arch: x64
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- uses: julia-actions/setup-julia@v2
2424
with:
2525
version: ${{ matrix.version }}
2626
arch: ${{ matrix.arch }}
27-
- uses: julia-actions/cache@v1
27+
- uses: julia-actions/cache@v3
2828
- uses: julia-actions/julia-buildpkg@v1
2929
- uses: julia-actions/julia-runtest@v1
3030
with:
3131
depwarn: error
3232
- uses: julia-actions/julia-processcoverage@v1
33-
- uses: codecov/codecov-action@v4
33+
- uses: codecov/codecov-action@v5
3434
with:
35-
file: lcov.info
35+
files: lcov.info
3636
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)