Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency ubuntu to v24 #7239

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
js:
name: JavaScript Checks
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
Expand All @@ -31,7 +31,7 @@ jobs:

android:
name: Build for Android
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
cache-npm-linux:
name: Cache npm for Linux
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
cache-key: ${{ steps.node-cache.outputs.cache-primary-key }}
steps:
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
prettier:
name: Prettier
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand All @@ -174,7 +174,7 @@ jobs:
eslint:
name: ESLint
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand All @@ -197,7 +197,7 @@ jobs:
jest:
name: Jest
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand All @@ -224,7 +224,7 @@ jobs:
tsc:
name: TypeScript
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand All @@ -247,7 +247,7 @@ jobs:
data:
name: Data
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand Down Expand Up @@ -324,7 +324,7 @@ jobs:
android-bundle:
name: Android Bundle
needs: [cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
cache-key: ${{ steps.jsbundle-cache.outputs.cache-primary-key }}
steps:
Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:
android:
name: Build for Android
needs: [jest, eslint, android-bundle, cache-npm-linux]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

Expand Down
Loading