From a00eed90f4344b39acd0ca909a669bacb9a4e44a Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Tue, 7 Feb 2023 12:29:06 -0500 Subject: [PATCH] Update instance runner for workflow Small Linux runners are only supported within on-prem actions. This change updates the workflow to use a public Linux runner. --- .github/workflows/create-release-branch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/create-release-branch.yml b/.github/workflows/create-release-branch.yml index 12f672253..bde817455 100644 --- a/.github/workflows/create-release-branch.yml +++ b/.github/workflows/create-release-branch.yml @@ -1,8 +1,8 @@ -name: create a release branch +name: Create a release branch on: [workflow_dispatch] jobs: create-branch: - runs-on: [linux, small] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: hashicorp/actions-create-release-branch@v1