Skip to content

Commit 7093692

Browse files
committed
add dependabot config, update actions
1 parent 5206f48 commit 7093692

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
# Keep dependencies for GitHub Actions up-to-date
9+
- package-ecosystem: 'github-actions'
10+
directory: '/'
11+
schedule:
12+
interval: 'weekly'

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
- x64
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Setup Julia environment
28-
uses: julia-actions/setup-julia@v1
28+
uses: julia-actions/setup-julia@v2
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
@@ -212,7 +212,7 @@ jobs:
212212
213213
- name: Upload test results
214214
if: always()
215-
uses: actions/upload-artifact@v4
215+
uses: actions/upload-artifact@v5
216216
with:
217217
name: test-results-${{ matrix.os }}-${{ matrix.version }}
218218
path: |

0 commit comments

Comments
 (0)