diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cdfb55d..2ce75a0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,10 @@ jobs: matrix: nim: ['1.6.12', 'stable', 'devel'] gc: ['refc', 'orc'] - os: ["ubuntu-latest", "windows-latest"] + os: ["ubuntu-latest"] + include: + - os: windows-latest + nim: "stable" runs-on: ${{ matrix.os }} name: Nim ${{ matrix.os }} ${{ matrix.nim }} ${{ matrix.gc }} test steps: @@ -30,7 +33,7 @@ jobs: - name: Cache choosenim id: cache-choosenim - uses: actions/cache@v1 + uses: actions/cache@v4 with: path: ~/.nimble key: nimble-v2-${{ hashFiles('*.nimble') }}