Skip to content

Commit 6a8914e

Browse files
Bump julia-actions/setup-julia from 2 to 3 (#103)
* Bump julia-actions/setup-julia from 2 to 3 Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 2 to 3. - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](julia-actions/setup-julia@v2...v3) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * remove arch --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sheehan Olver <[email protected]>
1 parent 8f4c748 commit 6a8914e

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/CI.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,23 @@ on:
77
tags: '*'
88
jobs:
99
test:
10-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
fail-fast: false
1414
matrix:
1515
version:
16-
- '1.6'
16+
- 'lts'
1717
- '1'
18-
# - 'nightly'
1918
os:
2019
- ubuntu-latest
2120
- macOS-latest
2221
- windows-latest
23-
arch:
24-
- x64
2522
steps:
2623
- uses: actions/checkout@v6
27-
- uses: julia-actions/setup-julia@v2
24+
- uses: julia-actions/setup-julia@v3
2825
with:
2926
version: ${{ matrix.version }}
30-
arch: ${{ matrix.arch }}
3127
- uses: actions/cache@v5
3228
env:
3329
cache-name: cache-artifacts

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: which julia
1616
continue-on-error: true
1717
- name: Install Julia, but only if it is not already available in the PATH
18-
uses: julia-actions/setup-julia@v2
18+
uses: julia-actions/setup-julia@v3
1919
with:
2020
version: '1'
2121
arch: ${{ runner.arch }}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Distributions = "0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25"
1717
FastGaussQuadrature = "0.3, 0.4, 0.5, 1"
1818
GSL = "0.4, 1"
1919
SpecialFunctions = "0.7, 1, 2"
20-
julia = "1.6"
20+
julia = "1.10"
2121

2222
[extras]
2323
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)