From 6caeb1a4f79c3988bc47d126cc158256be3a350e Mon Sep 17 00:00:00 2001 From: Alex S <49695018+alexs-mparticle@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:23:54 -0500 Subject: [PATCH] ci: Update release to use ubuntu-latest (#54) --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 893cb29..16a83e0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: create-release-branch: name: Create release branch - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest needs: confirm-public-repo-master-branch steps: - name: Checkout development branch @@ -30,7 +30,7 @@ jobs: git push origin release/${{ github.run_number }} release: name: Perform Release - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest needs: create-release-branch env: GITHUB_TOKEN: ${{ secrets.MP_INTEGRATIONS_SEMANTIC_RELEASE_BOT }} @@ -98,7 +98,7 @@ jobs: sync-repository: name: Sync development and master branches needs: release - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Checkout public master branch uses: actions/checkout@v3