Pinned Ubuntu version for tests & release workflows

- we were using `ubuntu-latest`, which is an alias for 18.04, but there's an
  increasingly likely chance that the default becomes 20.04 soon.
- we don't officially support 20.04 yet, so we want to pin to our
  supported version until we're ready
This commit is contained in:
Daniel Lockyer 2020-08-18 13:05:15 +01:00
parent 3a46aafcbb
commit e8081f6691
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ on:
- '*'
jobs:
automate:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
env:
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@ -11,7 +11,7 @@ env:
FORCE_COLOR: 1
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
strategy:
matrix:
@ -59,7 +59,7 @@ jobs:
ghost-cli:
name: Ghost-CLI
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
runs-on: ubuntu-latest
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
with: