From fa660b328d065f7683e7303976bd81e2d58e98ae Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 3 Sep 2024 10:36:21 +0200 Subject: [PATCH] 1.4.1 (#69) --- .github/workflows/test.yml | 9 ++++++++- CODEOWNERS | 1 + README.md | 6 ++++-- node_modules/.package-lock.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 17 insertions(+), 7 deletions(-) create mode 100644 CODEOWNERS diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9af7705..8fd2e65 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,14 @@ jobs: - name: Test Deno run: deno run https://deno.land/std@0.198.0/examples/welcome.ts - - name: Test `deno install` + - name: Test `deno install -g` (2.0) + if: matrix.deno == 'canary' || matrix.deno == 'latest' + run: | + deno install -g --allow-net -n deno_curl https://deno.land/std@0.198.0/examples/curl.ts + deno_curl https://deno.land/std@0.198.0/examples/curl.ts + + - name: Test `deno install (1.0) + if: matrix.deno == '1.x' || matrix.deno == '1.33.1' || matrix.deno == '~1.32' || matrix.deno == 'b290fd01f3f5d32f9d010fc719ced0240759c049' run: | deno install --allow-net -n deno_curl https://deno.land/std@0.198.0/examples/curl.ts deno_curl https://deno.land/std@0.198.0/examples/curl.ts diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..af3179b --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @lucacasonato \ No newline at end of file diff --git a/README.md b/README.md index 21d951c..08c8cb5 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,8 @@ Targets the latest major, minor and patch version of Deno. ### Version from file -The extension can also automatically read the version file from [`.tool-versions`](https://asdf-vm.com/manage/configuration.html#tool-versions) +The extension can also automatically read the version file from +[`.tool-versions`](https://asdf-vm.com/manage/configuration.html#tool-versions) ```yaml - uses: denoland/setup-deno@v1 @@ -64,7 +65,8 @@ The extension can also automatically read the version file from [`.tool-versions deno-version-file: .tool-versions ``` -The extension can also automatically read the file from [`dvm`](https://github.com/justjavac/dvm). +The extension can also automatically read the file from +[`dvm`](https://github.com/justjavac/dvm). ```yaml - uses: denoland/setup-deno@v1 diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json index c7b955c..b26abe1 100644 --- a/node_modules/.package-lock.json +++ b/node_modules/.package-lock.json @@ -1,6 +1,6 @@ { "name": "setup-deno", - "version": "1.4.0", + "version": "1.4.1", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package-lock.json b/package-lock.json index aae3216..c3efc86 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-deno", - "version": "1.4.0", + "version": "1.4.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "setup-deno", - "version": "1.4.0", + "version": "1.4.1", "license": "MIT", "dependencies": { "@actions/core": "^1.10.0", diff --git a/package.json b/package.json index 2f59e3c..bc8e000 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "setup-deno", "description": "Set up Deno easially in GitHub Actions", - "version": "1.4.0", + "version": "1.4.1", "author": "Deno Land Inc", "license": "MIT", "scripts": {