Skip to content

Commit

Permalink
chore(ci): set runner image to fixed ubuntu version
Browse files Browse the repository at this point in the history
See actions/runner-images#10636
Better be specific from now on
  • Loading branch information
ptitmouton committed Dec 22, 2024
1 parent 60eafeb commit a62d494
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/__deploy_dockerfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ on:
jobs:
build-image:
name: 'Build image from Dockerfile'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
IMAGE_NAME: '${{ inputs.name }}'
RELEASE_NAME: '${{ inputs.releaseName }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chromatic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
storybook-chromatic:
name: Storybook visual testing on Chromatic
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:

tests:
name: Run tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:latest
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

check-build:
name: Check the projects build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
project: ['core', 'web']
exclude:
- environment: ${{ github.ref_name == 'main' && 'preview' || 'staging' }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# Sentry does need a repository it seems
- name: Checkout Repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
name: Run Playwright tests
timeout-minutes: 60
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
publish-storybook-page:
name: Publish Hubert Storybook as Github Page
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-target.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
add-reviews:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: kentaro-m/auto-assign-action@v2.0.0
2 changes: 1 addition & 1 deletion .github/workflows/release-create.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
create-release:
name: 'Create release'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
version: ${{ steps.bump.outputs.version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
project: ['core', 'web']
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# Sentry does need a repository it seems
- name: Checkout Repo
Expand Down

0 comments on commit a62d494

Please sign in to comment.