From 0f2458332c742f780ebef52a86bcaab0fbe7cddc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 08:58:02 +0000 Subject: [PATCH 1/2] Bump julia-actions/cache from 1 to 2 Bumps [julia-actions/cache](https://github.com/julia-actions/cache) from 1 to 2. - [Release notes](https://github.com/julia-actions/cache/releases) - [Commits](https://github.com/julia-actions/cache/compare/v1...v2) --- updated-dependencies: - dependency-name: julia-actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2207c86..cc88fbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - name: Cache - uses: julia-actions/cache@v1 + uses: julia-actions/cache@v2 with: cache-compiled: "true" - name: Build From 2e2dffc2f07572a817621125609b4b5994765634 Mon Sep 17 00:00:00 2001 From: Phillip Alday Date: Mon, 6 May 2024 11:08:37 +0000 Subject: [PATCH 2/2] Remove arch specifier --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc88fbd..0058f3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: - main jobs: test: - name: Julia ${{ matrix.version }} - R ${{ matrix.R }}- ${{ matrix.os }} - ${{ matrix.arch }} + name: Julia ${{ matrix.version }} - R ${{ matrix.R }}- ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -29,8 +29,6 @@ jobs: # - ubuntu-latest # linux currently doesn't work because of lib issues - macOS-latest # - windows-latest # Windows compiles *everything* and takes far too long - arch: - - x64 steps: - name: Checkout uses: actions/checkout@v4 @@ -44,7 +42,6 @@ jobs: uses: julia-actions/setup-julia@v1 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - name: Cache uses: julia-actions/cache@v2 with: