diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c267d05d..9af69aad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: denoland/setup-deno@v1 + with: + deno-version: rc - name: List packages id: packages run: | @@ -69,7 +71,7 @@ jobs: - uses: actions/configure-pages@v5 - uses: denoland/setup-deno@v1 with: - deno-version: 1.x + deno-version: rc - uses: actions/setup-node@v4 with: node-version: 22.x @@ -99,6 +101,8 @@ jobs: with: ref: main - uses: denoland/setup-deno@v1 + with: + deno-version: rc - name: Configure git run: | git config user.name 'github-actions[bot]' @@ -154,6 +158,8 @@ jobs: with: fetch-depth: 0 - uses: denoland/setup-deno@v1 + with: + deno-version: rc - name: Configure git run: | git config user.name 'github-actions[bot]' diff --git a/.github/workflows/ci_package.yml b/.github/workflows/ci_package.yml index 195eed24..84212ced 100644 --- a/.github/workflows/ci_package.yml +++ b/.github/workflows/ci_package.yml @@ -79,6 +79,8 @@ jobs: steps: - uses: actions/checkout@v4 - uses: denoland/setup-deno@v1 + with: + deno-version: rc - run: deno lint - run: deno fmt --check - run: | @@ -132,7 +134,7 @@ jobs: fetch-depth: 0 - uses: denoland/setup-deno@v1 with: - deno-version: 1.x + deno-version: rc - uses: actions/setup-node@v4 with: node-version: 22.x @@ -153,7 +155,6 @@ jobs: if: ${{ steps.package.outputs.has_build }} # Tests - run: deno task test:deno - - run: deno task test:deno-future - run: deno task test:others # Bench - run: deno task bench @@ -218,6 +219,8 @@ jobs: with: fetch-depth: 0 - uses: denoland/setup-deno@v1 + with: + deno-version: rc - name: Configure git run: | git config user.name 'github-actions[bot]'