Skip to content

Commit

Permalink
Upgrade to Ubuntu 24.04 and macOS 13
Browse files Browse the repository at this point in the history
* Remove older OS versions: Ubuntu 20.04 and macOS 11
* Remove Python 3.7 from Ubuntu as it's no longer supported on x86_64:
  https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
  • Loading branch information
mbrukman committed Aug 17, 2024
1 parent 57b35dc commit 080d428
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ jobs:
# these failures:
# * https://github.com/mbrukman/yaml2json/runs/2213742057?check_suite_focus=true
# * https://github.com/mbrukman/yaml2json/runs/2213742072?check_suite_focus=true
os: [ 'ubuntu-22.04', 'ubuntu-20.04' ]
python: [ '3.10', '3.9', '3.8', '3.7' ]
#
# Python 3.7 is no longer supported on x86_64:
# https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
os: [ 'ubuntu-24.04', 'ubuntu-22.04' ]
python: [ '3.10', '3.9', '3.8' ]
name: Python ${{ matrix.python }} (${{ matrix.os }})
steps:
- name: Checkout repo
Expand All @@ -52,7 +55,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-22.04', 'ubuntu-20.04', 'macos-12', 'macos-11' ]
os: [ 'ubuntu-24.04', 'ubuntu-22.04', 'macos-13', 'macos-12' ]
go: [ '1.18', '1.17', '1.16', '1.15', '1.14', '1.13', '1.12' ]
name: Go ${{ matrix.go }} (${{ matrix.os }})
steps:
Expand Down

0 comments on commit 080d428

Please sign in to comment.