Skip to content

Commit

Permalink
chore: pin runner image version (#93)
Browse files Browse the repository at this point in the history
* chore: simply trigger rebuild

* chore: pin ubuntu-22.04

Will continue to be supported and available for the next two years
  • Loading branch information
pfeerick authored Feb 3, 2025
1 parent ff0859b commit 6810861
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
run: yarn lint:all

format:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand All @@ -51,7 +51,7 @@ jobs:
run: yarn fmt:check

test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

test-types:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand All @@ -102,7 +102,7 @@ jobs:
CI: true

storybook:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:

e2e-web:
needs: compile
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:
preview-web:
needs: [compile, storybook]
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:

release-web-prod:
needs: [e2e-web, test, storybook]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request'
steps:
- name: Fetch compiled source
Expand All @@ -388,7 +388,7 @@ jobs:

release-app:
needs: [build-and-test-app, test]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event_name != 'pull_request'
steps:
- name: Fetch binaries
Expand Down

0 comments on commit 6810861

Please sign in to comment.