Skip to content

Commit

Permalink
Fixed runner machines version untill hosted runners move to 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
f213 committed Dec 23, 2024
1 parent 711c204 commit a4d234c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -29,7 +29,7 @@ jobs:

test:
needs: lint
runs-on: ${{ contains(github.triggering_actor, '[bot]') && 'ubuntu-latest' || 'ubuntu-8x' }}
runs-on: ${{ contains(github.triggering_actor, '[bot]') && 'ubuntu-22.04' || 'ubuntu-8x' }}
services:
postgres:
image: postgres:13.9-alpine
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
build-docker-image:
needs: test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
deploy:
needs: build-docker-image
if: github.ref == 'refs/heads/master' && github.repository_owner == 'tough-dev-school'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit a4d234c

Please sign in to comment.