From 2ccbe03bf8ac8eb4835f62b05d0a188b933272a3 Mon Sep 17 00:00:00 2001 From: Michael Maeng Date: Fri, 28 Apr 2023 09:17:54 -0400 Subject: [PATCH] update GHA runners to ubuntu latest --- .github/workflows/cd.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 811f3e0..38b2779 100755 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -10,7 +10,7 @@ on: jobs: delivery-nodejs: name: Prepare for NPM - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -35,7 +35,7 @@ jobs: delivery-python: name: Prepare for PyPI - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: python: [3.6] @@ -58,7 +58,7 @@ jobs: delivery-github: name: Delivery to GitHub needs: [delivery-nodejs, delivery-python] - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Download NPM Artifacts diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d92eb6..282b560 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: [ push, pull_request ] jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/setup-python@v4 with: