Skip to content

Commit

Permalink
github actions: switch to ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
schlimmchen committed Dec 2, 2024
1 parent 943e097 commit 9f6be07
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
branches:
- master
- development
- actions-ubuntu-24.04
tags-ignore:
- 'v**'
pull_request:
Expand All @@ -18,7 +19,7 @@ on:
jobs:
get_default_envs:
name: Gather Environments
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -49,7 +50,7 @@ jobs:

build:
name: Build Environments
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: get_default_envs
strategy:
matrix:
Expand Down Expand Up @@ -134,7 +135,7 @@ jobs:
release:
name: Create Release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [get_default_envs, build]
if: startsWith(github.ref, 'refs/tags/2')
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpplint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

# prevent push event from triggering if it's part of a local PR, see
# https://github.com/orgs/community/discussions/57827#discussioncomment-6579237
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/repo-maintenance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
stale:
name: 'Stale'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/stale@v9
with:
Expand All @@ -32,7 +32,7 @@ jobs:
lock-threads:
name: 'Lock Old Threads'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: dessant/lock-threads@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarnlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

# prevent push event from triggering if it's part of a local PR, see
# https://github.com/orgs/community/discussions/57827#discussioncomment-6579237
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yarnprettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

# prevent push event from triggering if it's part of a local PR, see
# https://github.com/orgs/community/discussions/57827#discussioncomment-6579237
Expand Down

0 comments on commit 9f6be07

Please sign in to comment.