Skip to content

Commit 93ced5f

Browse files
authored
Create dependabot.yml and update action versions (#365)
* Create dependabot.yml * Update action version in CI.yml
1 parent f82cb3c commit 93ced5f

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/CI.yml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,11 @@ jobs:
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
32-
- uses: actions/cache@v4
33-
env:
34-
cache-name: cache-artifacts
35-
with:
36-
path: ~/.julia/artifacts
37-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38-
restore-keys: |
39-
${{ runner.os }}-test-${{ env.cache-name }}-
40-
${{ runner.os }}-test-
41-
${{ runner.os }}-
32+
- uses: julia-actions/cache@v2
4233
- uses: julia-actions/julia-buildpkg@v1
4334
- uses: julia-actions/julia-runtest@v1
4435
- uses: julia-actions/julia-processcoverage@v1
4536
- uses: codecov/codecov-action@v5
4637
with:
47-
file: lcov.info
38+
files: lcov.info
39+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)