Skip to content

Commit a548f4e

Browse files
authored
Use macos-arm-oss instead of macos-11 (#137)
macos-11 (Big Sur) is EOL today. I removed it and add `macos-arm-oss` instead of `macos-11`. `macos-arm-oss` is `macos-13` with Apple Silicon architecture. We can cover with them for real world usage.
1 parent fd4bb4e commit a548f4e

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os:
16-
- macos-11
1716
- macos-12
17+
- macos-arm-oss
1818
- ubuntu-latest
1919
- windows-latest
2020
ruby:
@@ -29,6 +29,7 @@ jobs:
2929
- { os: windows-latest , ruby: mingw }
3030
- { os: windows-latest , ruby: mswin }
3131
exclude:
32+
- { os: macos-arm-oss , ruby: '2.5' }
3233
- { os: windows-latest , ruby: '3.0' }
3334
- { os: windows-latest , ruby: debug }
3435

@@ -80,7 +81,7 @@ jobs:
8081
fail-fast: false
8182
matrix:
8283
service:
83-
- fedora-33
84+
- fedora-latest
8485

8586
steps:
8687
- uses: actions/checkout@v4

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
version: "3.5"
22

33
services:
4-
fedora-33:
4+
fedora-latest:
55
build:
66
context: .
7-
dockerfile: dockerfiles/fedora-33.dockerfile
7+
dockerfile: dockerfiles/fedora-latest.dockerfile
88
volumes:
99
- .:/source:delegated
1010
command:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:33
1+
FROM fedora:latest
22

33
RUN \
44
dnf install -y \

0 commit comments

Comments
 (0)