Skip to content

Commit 9df173d

Browse files
authored
Add Dependabot (#154)
1 parent caf8eab commit 9df173d

4 files changed

Lines changed: 17 additions & 10 deletions

File tree

.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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
version: ['1']
18+
version: ['1.10', '1']
1919
os: [ubuntu-latest, macOS-latest, windows-latest]
2020
arch: [x64]
2121
include:
@@ -28,16 +28,16 @@ jobs:
2828
os: macos-14
2929
arch: aarch64
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- uses: julia-actions/setup-julia@v2
3333
with:
3434
version: ${{ matrix.version }}
3535
arch: ${{ matrix.arch }}
36-
- uses: julia-actions/cache@v1
36+
- uses: julia-actions/cache@v3
3737
- uses: julia-actions/julia-buildpkg@v1
3838
- uses: julia-actions/julia-runtest@v1
3939
- uses: julia-actions/julia-processcoverage@v1
40-
- uses: codecov/codecov-action@v4
40+
- uses: codecov/codecov-action@v5
4141
with:
42-
file: lcov.info
42+
files: lcov.info
4343
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/format_check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- uses: julia-actions/setup-julia@latest
1414
with:
1515
version: '1'
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: Format check
1818
shell: julia --color=yes {0}
1919
run: |
2020
using Pkg
21-
Pkg.add(PackageSpec(name="JuliaFormatter", version="1"))
21+
Pkg.add(PackageSpec(name="JuliaFormatter", version="2"))
2222
using JuliaFormatter
2323
format(".", verbose=true)
2424
out = String(read(Cmd(`git diff`)))

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
1212
CEnum = "0.3, 0.4, 0.5"
1313
ECOS_jll = "=2.0.8, =200.0.800"
1414
MathOptInterface = "1.1"
15-
SparseArrays = "<0.0.1, 1.6"
16-
Test = "<0.0.1, 1.6"
17-
julia = "1.6"
15+
SparseArrays = "1"
16+
Test = "1"
17+
julia = "1.10"
1818

1919
[extras]
2020
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

0 commit comments

Comments
 (0)