Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoalh committed Nov 6, 2024
1 parent 2bd9e3d commit 47768a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"COLOR": "npm:[email protected]",
"COLORNAMESPACELISTCOMMUNITY": "npm:[email protected]/dist/colornames.esm.js",
"EXFETCH": "jsr:@hugoalh/[email protected]",
"GHACTIONS": "jsr:@hugoalh/github-actions-core@0.3.0",
"GHACTIONS": "jsr:@hugoalh/github-actions-core@0.4.0",
"ISJSON": "jsr:@hugoalh/[email protected]",
"REGEXPURL": "npm:[email protected]",
"STD/assert": "jsr:@std/[email protected].6",
"STD/fs": "jsr:@std/[email protected].4",
"STD/assert": "jsr:@std/[email protected].7",
"STD/fs": "jsr:@std/[email protected].5",
"STD/media-types": "jsr:@std/[email protected]",
"STD/path": "jsr:@std/[email protected].6",
"STD/path": "jsr:@std/[email protected].8",
"STD/yaml": "jsr:@std/[email protected]",
"STRINGOVERFLOW": "jsr:@hugoalh/[email protected]"
},
Expand Down
8 changes: 4 additions & 4 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ try {
});
const responseText = await response.text();
setOutput({
"response": responseText,
"status_code": String(response.status),
"status_ok": String(response.ok),
"status_text": response.statusText
response: responseText,
status_code: response.status,
status_ok: response.ok,
status_text: response.statusText
});
if (!response.ok) {
throw new Error(`Unexpected response status \`${response.status} ${response.statusText}\`: ${responseText}`);
Expand Down

0 comments on commit 47768a8

Please sign in to comment.