Skip to content

Commit

Permalink
use latest ubuntu (#18148)
Browse files Browse the repository at this point in the history
  • Loading branch information
minggo authored Jan 9, 2025
1 parent 2230501 commit 050b680
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/native-compile-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: "Linux-Ubuntu"
if:
(! contains(github.event.pull_request.body, '[X] does not change any runtime related code or build configuration'))
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download external libraries
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/native-linter-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
# Set the type of machine to run on
if:
(! contains(github.event.pull_request.body, '[X] does not change any runtime related code or build configuration'))
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
# Checks out a copy of your repository on the ubuntu-latest machine
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install CMake & Clang Tidy
run: |
sudo apt update --fix-missing
sudo apt install -y cmake llvm clang-tidy-11 ninja-build
sudo apt install -y cmake llvm clang-tidy ninja-build
- name: Download external
run: |
EXT_VERSION=`node ./.github/workflows/get-native-external-version.js`
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
if [[ "$FILTERED-xxx" == "-xxx" ]]; then
echo "no source files match"
else
clang-tidy-11 --format-style=file --export-fixes=clang-fixes.yaml $FILTERED
clang-tidy --format-style=file --export-fixes=clang-fixes.yaml $FILTERED
fi
- name: clang-tidy-action
uses: PatriceJiang/clang-tidy-action@master
Expand Down

0 comments on commit 050b680

Please sign in to comment.