From ad8c4db4b9138dc972c672230bcfff439ba99ad1 Mon Sep 17 00:00:00 2001 From: Henrique Ferrolho Date: Wed, 4 Dec 2024 14:25:06 +0000 Subject: [PATCH] Update CI.yml to update Julia version of the runners --- .github/workflows/{ci.yml => CI.yml} | 20 +++++--------------- Project.toml | 2 +- 2 files changed, 6 insertions(+), 16 deletions(-) rename .github/workflows/{ci.yml => CI.yml} (56%) diff --git a/.github/workflows/ci.yml b/.github/workflows/CI.yml similarity index 56% rename from .github/workflows/ci.yml rename to .github/workflows/CI.yml index 627c024..4bc3230 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/CI.yml @@ -10,30 +10,20 @@ jobs: fail-fast: false matrix: version: - - '1.3' - - '1.6' + - '1.9' + - '1.10' - '1' os: - ubuntu-latest arch: - x64 steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@v4 + - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - CI: true - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 diff --git a/Project.toml b/Project.toml index fed121d..cbccd16 100644 --- a/Project.toml +++ b/Project.toml @@ -20,7 +20,7 @@ LightXML = "0.8, 0.9" RigidBodyDynamics = "2" Rotations = "1" StaticArrays = "0.11, 0.12, 1" -julia = "1.3" +julia = "1.9" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"