Skip to content

Commit 5b486c3

Browse files
authored
Add Dependabot (#205)
1 parent b4cd7c4 commit 5b486c3

4 files changed

Lines changed: 14 additions & 7 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ 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: |

.github/workflows/minlptests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
os: macos-14
2020
arch: aarch64
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
- shell: julia --color=yes {0}
3030
run: |

0 commit comments

Comments
 (0)