Skip to content

Deno

How json2vars-setter handles Deno, and how the example workflow provisions it.

json2vars-setter integration

Item Value
Matrix JSON key versions.deno
Action output versions_deno
Dynamic-update strategy input deno-strategy (stable / latest / both)
Version source see Version Sources

Supported runners

The example matrix runs on Ubuntu / Windows / macOS:

ubuntu-latest, windows-latest, macos-latest

Any GitHub-hosted runner the setup action supports also works - the OS list is just the os array in your matrix JSON.

Supported versions

Example matrix (what the example workflow runs):

1
2
3
4
5
6
7
8
{
  "versions": {
    "deno": [
      "v1.x",
      "v2.x"
    ]
  }
}

Latest values tracked by the dynamic-update tooling (auto-refreshed from the release APIs into the version cache):

Field Version
stable 2.7.14
latest 2.8.3

Cache last updated: 2026-06-24T12:28:41.530983.

Setup action (example workflow)

deno_test.yml provisions Deno with the matrix value json2vars-setter produced:

1
2
3
4
- name: Set up Deno
  uses: denoland/setup-deno@v2.0.5
  with:
    deno-version: ${{ matrix.deno-version }}

References