Skip to content

Commit

Permalink
update deno.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 25, 2023
1 parent 679acc2 commit d676005
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 69 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,5 @@ jobs:
sudo mv bin/dagger /usr/local/bin
dagger version
- name: Run Dagger Pipelines
run: |
rm ../deno.lock
dagger run deno run -A ../src/dagger/runner.ts
run: dagger run deno run -A ../src/dagger/runner.ts
working-directory: example
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ fluentci run .
You can also use this pipeline programmatically:

```ts
import { build, test } from "https://pkg.fluentci.io/rust_pipeline@v0.6.0/mod.ts";
import { build, test } from "https://pkg.fluentci.io/rust_pipeline@v0.6.1/mod.ts";

await test();
await build();
Expand Down
2 changes: 1 addition & 1 deletion ci.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
build,
test,
} from "https://pkg.fluentci.io/rust_pipeline@v0.6.0/mod.ts";
} from "https://pkg.fluentci.io/rust_pipeline@v0.6.1/mod.ts";

await test();
await build();
114 changes: 53 additions & 61 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
export { assertEquals } from "https://deno.land/std@0.191.0/testing/asserts.ts";
import Client from "https://sdk.fluentci.io/z1/mod.ts";
import Client from "https://sdk.fluentci.io/v0.2.0/mod.ts";
export default Client;

export {
connect,
uploadContext,
CacheSharingMode,
Container,
} from "https://sdk.fluentci.io/z1/mod.ts";
} from "https://sdk.fluentci.io/v0.2.0/mod.ts";
export { brightGreen } from "https://deno.land/std@0.191.0/fmt/colors.ts";
export { withDevbox } from "https://nix.fluentci.io/zenith/src/dagger/steps.ts";
export { withDevbox } from "https://nix.fluentci.io/v0.5.2/src/dagger/steps.ts";
export { stringifyTree } from "https://esm.sh/stringify-tree@1.1.1";
import gql from "https://esm.sh/graphql-tag@2.12.6";
export { gql };
Expand Down

0 comments on commit d676005

Please sign in to comment.