From b2f99aa15a37063ce81817da5f11e0492d1519ef Mon Sep 17 00:00:00 2001 From: Maximilian Beck Date: Thu, 6 Oct 2022 17:09:14 +0200 Subject: [PATCH 1/4] Fix typo in use-context command --- runner-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner-entrypoint.sh b/runner-entrypoint.sh index 85b5cc3..59aeaf7 100755 --- a/runner-entrypoint.sh +++ b/runner-entrypoint.sh @@ -14,7 +14,7 @@ else echo "Required file on path 'GITHUB_EVENT_PATH' not exists" fi codefresh auth create-context context --api-key $CF_API_KEY -codefresh auth use-contex context +codefresh auth use-context context if [ -n "$CF_BRANCH" ] then From 56eaea94e1c0045de4cf2e2ef6a58a793245b714 Mon Sep 17 00:00:00 2001 From: Luke Goodfellow Date: Fri, 17 Nov 2023 14:51:10 -0800 Subject: [PATCH 2/4] Update main.yml fixed syntax --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 37989ca..14ad1fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: uses: actions/checkout@master - name: 'run pipeline' - uses:./ + uses: ./ env: PIPELINE_NAME: 'codefresh-pipeline' TRIGGER_NAME: 'codefresh-trigger' From 9542c9027fc6999cf541c51d1b2e1eb14c5a5c3c Mon Sep 17 00:00:00 2001 From: Luke Goodfellow Date: Fri, 17 Nov 2023 14:58:58 -0800 Subject: [PATCH 3/4] updated action to ubuntu-22.04 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 14ad1fe..1f441b6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,7 +2,7 @@ name: run codefresh pipeline on: push jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@master From c2fe0b32ae880220653855bc2254271a37441fb1 Mon Sep 17 00:00:00 2001 From: Luke Goodfellow Date: Fri, 17 Nov 2023 15:09:05 -0800 Subject: [PATCH 4/4] Update example to latest version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a3dc3b..03c55f6 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@master - name: 'run pipeline' - uses: codefresh-io/codefresh-pipeline-runner@v5 + uses: codefresh-io/codefresh-pipeline-runner@v8 with: args: '-v key1=value1 -v key2=value2' env: