Skip to content

Commit 7e668f6

Browse files
authored
Update GitHub Actions dependencies (#78)
* Update GitHub Actions dependencies * Add dependabot
1 parent ab95e6a commit 7e668f6

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

.github/dependabot.yaml

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: "/"
6+
schedule:
7+
interval: "weekly"

.github/workflows/CI.yml

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,21 +54,12 @@ jobs:
5454
# - name: sshd logs
5555
# run: |
5656
# journalctl -t sshd
57-
- uses: actions/checkout@v2
58-
- uses: julia-actions/setup-julia@v1
57+
- uses: actions/checkout@v5
58+
- uses: julia-actions/setup-julia@v2
5959
with:
6060
version: ${{ matrix.version }}
6161
arch: ${{ matrix.arch }}
62-
- uses: actions/cache@v1
63-
env:
64-
cache-name: cache-artifacts
65-
with:
66-
path: ~/.julia/artifacts
67-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
68-
restore-keys: |
69-
${{ runner.os }}-test-${{ env.cache-name }}-
70-
${{ runner.os }}-test-
71-
${{ runner.os }}-
62+
- uses: julia-actions/julia-runtest@v1
7263
- uses: julia-actions/julia-buildpkg@v1
7364
- uses: julia-actions/julia-runtest@v1
7465
env:
@@ -77,10 +68,10 @@ jobs:
7768
name: Documentation
7869
runs-on: ubuntu-latest
7970
steps:
80-
- uses: actions/checkout@v2
81-
- uses: julia-actions/setup-julia@latest
71+
- uses: actions/checkout@v5
72+
- uses: julia-actions/setup-julia@v2
8273
with:
83-
version: '1.6'
74+
version: '1'
8475
- run: julia --project=docs -e '
8576
using Pkg;
8677
Pkg.instantiate();'

0 commit comments

Comments
 (0)