From 06fe6219ac18b888fabc571105945435bb2aed8a Mon Sep 17 00:00:00 2001 From: Kenny Ung Date: Wed, 19 Oct 2022 14:11:31 -0400 Subject: [PATCH 1/3] Add required 'schemaVersion' as a part of the breaking changes migrating from v0 to v1. --- porter.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/porter.yaml b/porter.yaml index e778b77d..3e716e7b 100644 --- a/porter.yaml +++ b/porter.yaml @@ -1,5 +1,5 @@ +schemaVersion: 1.0.0 name: fullstack_rems -version: 0.0.1 description: Fullstack DRLS REMS Workflow registry: codexrems @@ -85,4 +85,4 @@ stop: arguments: - -f - docker-compose-porter.yml - - stop \ No newline at end of file + - stop From 21b2de7a4e14dcd8d396e069590a278088161d64 Mon Sep 17 00:00:00 2001 From: kennyEung Date: Wed, 19 Oct 2022 14:24:23 -0400 Subject: [PATCH 2/3] Update porter-ci.yml --- .github/workflows/porter-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/porter-ci.yml b/.github/workflows/porter-ci.yml index 8a879483..5418af38 100644 --- a/.github/workflows/porter-ci.yml +++ b/.github/workflows/porter-ci.yml @@ -18,7 +18,7 @@ jobs: shell: bash - name: Install Porter - run: curl -L https://cdn.porter.sh/canary/install-linux.sh | bash + run: curl -L https://cdn.porter.sh/latest/install-linux.sh | bash - name: Set Porter path run: echo "~/.porter" >> $GITHUB_PATH From b12b1e7b7693dc13f1d29d65b74be8e5e9a8d963 Mon Sep 17 00:00:00 2001 From: kennyEung Date: Thu, 20 Oct 2022 17:23:53 -0400 Subject: [PATCH 3/3] Update porter-ci.yml --- .github/workflows/porter-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/porter-ci.yml b/.github/workflows/porter-ci.yml index 5418af38..3fe3f3d3 100644 --- a/.github/workflows/porter-ci.yml +++ b/.github/workflows/porter-ci.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - run: 'echo "COMPOSE_PROJECT_NAME=rems_porter" >> .env; echo "PORTER_ALLOW_DOCKER_HOST_ACCESS=true" >> .env' shell: bash