From 2505292f6ba727adf322bac9da51d79b0ff100e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:03:09 +0000 Subject: [PATCH 1/2] Bump julia-actions/setup-julia from 1 to 2 Bumps [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) from 1 to 2. - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](https://github.com/julia-actions/setup-julia/compare/v1...v2) --- updated-dependencies: - dependency-name: julia-actions/setup-julia dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 2 +- .github/workflows/Documentation.yml | 2 +- .github/workflows/codeformat-pr.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b50a7932..0e0c1766 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -48,7 +48,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.julia-version }} - uses: julia-actions/cache@v2 diff --git a/.github/workflows/Documentation.yml b/.github/workflows/Documentation.yml index 04ec00aa..f1731fe4 100644 --- a/.github/workflows/Documentation.yml +++ b/.github/workflows/Documentation.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: 1 - uses: julia-actions/cache@v2 diff --git a/.github/workflows/codeformat-pr.yml b/.github/workflows/codeformat-pr.yml index 89ba70fe..3adfc71f 100644 --- a/.github/workflows/codeformat-pr.yml +++ b/.github/workflows/codeformat-pr.yml @@ -21,7 +21,7 @@ jobs: with: access_token: ${{ github.token }} - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: julia-actions/setup-julia@v2 with: version: 1 - name: Install JuliaFormatter and format From 47e273fdad044137f3b75fcfd51bca99cc339384 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Mon, 23 Sep 2024 09:11:30 -0400 Subject: [PATCH 2/2] update CI matrix --- .github/workflows/CI.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 0e0c1766..17abcf31 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,7 +19,6 @@ jobs: matrix: os: - ubuntu-latest - - macOS-13 # intel - macOS-14 # arm - windows-latest julia-arch: @@ -29,16 +28,12 @@ jobs: julia-version: - '1.6' - '1' - - 'nightly' + - 'pre' exclude: - os: ubuntu-latest julia-arch: aarch64 - os: windows-latest julia-arch: aarch64 - - os: macOS-13 - julia-arch: x86 - - os: macOS-13 - julia-arch: aarch64 - os: macOS-14 julia-arch: x86 - os: macOS-14