Skip to content

Commit

Permalink
fix: temporary fix for ubuntu version problem
Browse files Browse the repository at this point in the history
  • Loading branch information
SudharakaP committed Dec 20, 2024
1 parent a6a03bf commit 4aff498
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/booking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
define-env:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
environment:
name: ${{ github.event.client_payload.environment || 'test' }}
outputs:
Expand All @@ -46,7 +46,7 @@ jobs:
env:
BOOKING_URL: ${{ needs.define-env.outputs.BOOKING_URL }}
# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-for-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
login: ${{ fromJson(vars.LOGINS) }}

# The type of runner that the job will run on
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 5

steps:
Expand All @@ -27,7 +27,7 @@ jobs:
- run: npm run eslint:quiet

prettier:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 5

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
# required for all workflows
security-events: write
Expand Down

0 comments on commit 4aff498

Please sign in to comment.