Skip to content

Commit

Permalink
Update dependency https://deno.land/std to v0.217.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Feb 23, 2024
1 parent fb9ddd8 commit 2a7996b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/github.test.ts
@@ -1,9 +1,9 @@
import { assertEquals } from "https://deno.land/std@0.216.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import {
beforeEach,
describe,
it,
} from "https://deno.land/std@0.216.0/testing/bdd.ts";
} from "https://deno.land/std@0.217.0/testing/bdd.ts";
import { Github } from "./github.ts";

describe(Github.name, () => {
Expand Down
4 changes: 2 additions & 2 deletions src/github.ts
@@ -1,5 +1,5 @@
import { normalize } from "https://deno.land/std@0.216.0/path/normalize.ts";
import { decodeBase64 } from "https://deno.land/std@0.216.0/encoding/base64.ts";
import { normalize } from "https://deno.land/std@0.217.0/path/normalize.ts";
import { decodeBase64 } from "https://deno.land/std@0.217.0/encoding/base64.ts";
import { Octokit } from "npm:@octokit/rest@20.0.2";

export type FileContent = {
Expand Down
2 changes: 1 addition & 1 deletion src/workflow_file.test.ts
@@ -1,4 +1,4 @@
import { assertEquals } from "https://deno.land/std@0.216.0/assert/mod.ts";
import { assertEquals } from "https://deno.land/std@0.217.0/assert/mod.ts";
import { JobModel, StepModel } from "./workflow_file.ts";

Deno.test(JobModel.name, async (t) => {
Expand Down
2 changes: 1 addition & 1 deletion src/workflow_file.ts
@@ -1,4 +1,4 @@
import { parse } from "https://deno.land/std@0.216.0/yaml/parse.ts";
import { parse } from "https://deno.land/std@0.217.0/yaml/parse.ts";

type Workflow = {
name: string;
Expand Down
2 changes: 1 addition & 1 deletion src/workflow_tree.ts
@@ -1,4 +1,4 @@
import { normalize } from "https://deno.land/std@0.216.0/path/normalize.ts";
import { normalize } from "https://deno.land/std@0.217.0/path/normalize.ts";
import { Github } from "./github.ts";
import {
CompositeStepModel,
Expand Down

0 comments on commit 2a7996b

Please sign in to comment.