Skip to content

Commit 5986fd1

Browse files
ci: Use Ubuntu 20.04 and macOS 12 in CI (#174)
1 parent 7c6ae97 commit 5986fd1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build_gems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: 'Build gem'
77
strategy:
88
matrix:
9-
platform: [ubuntu-latest, macos-latest]
9+
platform: ['ubuntu-20.04', 'macos-12']
1010
config: ['debug', 'release']
1111
runs-on: ${{ matrix.platform }}
1212
env:

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-latest
12+
runs-on: 'ubuntu-20.04'
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: ruby/setup-ruby@v1

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-latest
12+
runs-on: 'ubuntu-20.04'
1313
steps:
1414
- uses: actions/checkout@v3
1515
- uses: actions/setup-go@v3

.github/workflows/publish-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
release-image:
15-
runs-on: ubuntu-latest
15+
runs-on: 'ubuntu-20.04'
1616
steps:
1717
- run: |
1818
if [ -z "$TAG" ]; then

.github/workflows/publish-manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
download-and-publish-gems:
1111
name: 'Download and publish gems'
12-
runs-on: ubuntu-latest
12+
runs-on: 'ubuntu-20.04'
1313
env:
1414
TAG: ${{ inputs.tag }}
1515
steps:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: 'Build and upload artifacts'
1010
strategy:
1111
matrix:
12-
platform: [ubuntu-latest, macos-latest]
12+
platform: ['ubuntu-20.04', 'macos-12']
1313
config: ['debug', 'release']
1414
runs-on: ${{ matrix.platform }}
1515
env:
@@ -88,7 +88,7 @@ jobs:
8888
create-release:
8989
name: 'Create release'
9090
needs: build-and-upload-artifacts
91-
runs-on: ubuntu-latest
91+
runs-on: 'ubuntu-20.04'
9292
steps:
9393
- uses: actions/checkout@v3
9494
- name: Create Release

0 commit comments

Comments
 (0)