diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3eb5087..bd3f08b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: version: - - '1.6' + - 'min' - '1' # - 'nightly' os: @@ -31,10 +31,10 @@ jobs: arch: x64 - os: macOS-latest version: '1' - arch: x64 + arch: aarch64 steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} @@ -42,15 +42,15 @@ jobs: - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v5 with: files: lcov.info multithreads: name: Julia (threads) 1 - ubuntu-latest - x64 - ${{ github.event_name }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v3 with: version: '1' arch: 'x64' @@ -59,6 +59,6 @@ jobs: - name: run test run: julia --project --code-coverage -t4 -e 'using Pkg; Pkg.test()' - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v5 with: files: lcov.info \ No newline at end of file diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 04c4c38..1d68a68 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -7,8 +7,8 @@ jobs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v3 with: version: '1' - run: | diff --git a/Project.toml b/Project.toml index aa1e76e..0b56504 100644 --- a/Project.toml +++ b/Project.toml @@ -11,7 +11,7 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" [compat] Distributions = "0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25" Images = "0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25, 0.26" -julia = "1.6" +julia = "1.10" [extras] ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"