diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eda7407..0c29d37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: nim: - - '2.0.14' + - 'binary:2.2.4' rust: - '1.79.0' os: @@ -35,9 +35,10 @@ jobs: run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }} - name: Setup nim - uses: jiro4989/setup-nim-action@v1 + uses: iffy/install-nim@v5 with: - nim-version: ${{ matrix.nim }} - repo-token: ${{ secrets.GITHUB_TOKEN }} + version: ${{ matrix.nim }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: nimble install -y - run: nimble test -y