Skip to content

Commit f7099e6

Browse files
Fix CI
1 parent b869b78 commit f7099e6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ concurrency:
1111
# Cancel intermediate builds: only if it is a pull request build.
1212
group: ${{ github.workflow }}-${{ github.ref }}
1313
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
14+
15+
permissions:
16+
actions: write
17+
contents: read
18+
1419
jobs:
1520
test:
1621
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -19,7 +24,7 @@ jobs:
1924
fail-fast: false
2025
matrix:
2126
version:
22-
- '1.9'
27+
- 'lts'
2328
- '1'
2429
os:
2530
- ubuntu-latest
@@ -33,7 +38,7 @@ jobs:
3338
with:
3439
version: ${{ matrix.version }}
3540
arch: ${{ matrix.arch }}
36-
- uses: julia-actions/cache@v1
41+
- uses: julia-actions/cache@v2
3742
- uses: julia-actions/julia-buildpkg@v1
3843
- uses: julia-actions/julia-runtest@v1
3944
continue-on-error: ${{ matrix.version == 'nightly' }}

0 commit comments

Comments
 (0)