Skip to content

Commit

Permalink
use Dagger v0.9.3
Browse files Browse the repository at this point in the history
use Dagger v0.9.3
  • Loading branch information
tsirysndr committed Nov 16, 2023
1 parent bd6a9d3 commit 5e256be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: FluentCI
uses: fluentci-io/setup-fluentci@v1
uses: fluentci-io/setup-fluentci@v2
- name: Run Hello World
run: fluentci run base_pipeline
```
Expand Down
3 changes: 2 additions & 1 deletion dist/setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default async () => {
"curl -fsSL https://deno.land/x/install/install.sh | sh",
]);
action.addPath(join(homedir(), ".deno", "bin"));
await exec("deno", ["--version"]);
await exec("deno", [
"install",
"-A",
Expand All @@ -24,7 +25,7 @@ export default async () => {
]);
await exec("sh", [
"-c",
"curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh",
"curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.3 sh",
]);
await exec("sudo", ["mv", "bin/dagger", "/usr/local/bin"]);
const version = await verifyFluentCI("fluentci");
Expand Down
4 changes: 1 addition & 3 deletions src/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ export default async (): Promise<{

action.addPath(join(homedir(), ".deno", "bin"));

await exec("deno", ["upgrade", "--version", "1.37.2"]);

await exec("deno", ["--version"]);

await exec("deno", [
Expand All @@ -35,7 +33,7 @@ export default async (): Promise<{
]);
await exec("sh", [
"-c",
"curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.8.8 sh",
"curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.3 sh",
]);

await exec("sudo", ["mv", "bin/dagger", "/usr/local/bin"]);
Expand Down

0 comments on commit 5e256be

Please sign in to comment.