Skip to content

Commit

Permalink
[CI] Pin GHA runner versions
Browse files Browse the repository at this point in the history
  • Loading branch information
straight-shoota committed Dec 6, 2023
1 parent 4bf845f commit f44fbc2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-22.04, macos-12]
crystal: [latest, nightly]
include:
- os: windows-latest
- os: windows-2022
crystal: nightly
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -47,13 +47,13 @@ jobs:
sudo apt-get install fossil
- name: Install Fossil
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-12' }}
run: |
brew update
brew install fossil
- name: Install Fossil
if: ${{ matrix.os == 'windows-latest' }}
if: ${{ matrix.os == 'windows-2022' }}
run: choco install fossil

- name: Download source
Expand All @@ -69,7 +69,7 @@ jobs:
run: crystal tool format --check src spec

docs:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Download source
uses: actions/checkout@v2
Expand Down

0 comments on commit f44fbc2

Please sign in to comment.