From 1a4fbc538768d14ea7fad91b1d62031f85d8aa2b Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Thu, 22 Sep 2022 12:37:41 -0700 Subject: [PATCH] Github Actions: replace ubuntu-18.04 with ubuntu-latest ubuntu-18.04 is deprecated and will be removed: https://github.com/actions/runner-images/issues/6002 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 26fb1e137..789eb1909 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: linux-ndll: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest strategy: matrix: haxe-version: [3.4.7, 4.0.5, 4.1.5, 4.2.5] @@ -704,7 +704,7 @@ jobs: linux-samples: needs: package-haxelib - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - name: Install system dependencies @@ -913,7 +913,7 @@ jobs: lime build SimpleAudio windows -release -verbose -nocolor notify: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest needs: [package-haxelib, docs, android-samples, flash-samples, hashlink-samples, html5-samples, ios-samples, linux-samples, macos-samples, neko-samples, windows-samples] if: ${{ github.repository == 'openfl/lime' && github.event_name != 'pull_request' }} steps: