Skip to content

Commit 8723e53

Browse files
Changed github action runner to ubuntu 18.04
1 parent 66a55ca commit 8723e53

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ on:
66
jobs:
77
build:
88
name: Build
9-
strategy:
10-
fail-fast: false
11-
matrix:
12-
os: [ ubuntu-latest, macos-latest, windows-latest ]
13-
runs-on: ${{ matrix.os }}
9+
runs-on: ubuntu-18.04
1410
if: startsWith(github.event.head_commit.message, 'Releasing version') != true
1511

1612
steps:

.github/workflows/early-access.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
earlyaccess:
99
name: EarlyAccess
1010
if: github.repository == 'redis-developer/testcontainers-redis' && startsWith(github.event.head_commit.message, 'Releasing version') != true
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-18.04
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
release:
1111
name: Release
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-18.04
1313
steps:
1414
- uses: actions/checkout@v2
1515
with:

0 commit comments

Comments
 (0)