Upgrade non-rz-test CI to ubuntu-22.04 (#3062)
This commit is contained in:
parent
7e01523427
commit
b1fb418ca5
6 changed files with 11 additions and 11 deletions
2
.github/workflows/code-analysis.yml
vendored
2
.github/workflows/code-analysis.yml
vendored
|
|
@ -11,7 +11,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
|
|
|
|||
2
.github/workflows/coverity-scan.yml
vendored
2
.github/workflows/coverity-scan.yml
vendored
|
|
@ -5,7 +5,7 @@ on:
|
|||
|
||||
jobs:
|
||||
latest:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Determine current repository
|
||||
id: "determine-repo"
|
||||
|
|
|
|||
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/labeler@v4
|
||||
with:
|
||||
|
|
|
|||
12
.github/workflows/linter.yml
vendored
12
.github/workflows/linter.yml
vendored
|
|
@ -11,7 +11,7 @@ on:
|
|||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
outputs:
|
||||
yaml: ${{ steps.filter.outputs.yaml }}
|
||||
clang-format: ${{ steps.filter.outputs.clang-format }}
|
||||
|
|
@ -51,7 +51,7 @@ jobs:
|
|||
|
||||
cmd_descs_yaml_check:
|
||||
needs: changes
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
if: ${{ needs.changes.outputs.yaml == 'true' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
@ -98,7 +98,7 @@ jobs:
|
|||
|
||||
clang-format:
|
||||
needs: changes
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
if: ${{ needs.changes.outputs.clang-format == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
@ -124,7 +124,7 @@ jobs:
|
|||
|
||||
prettier:
|
||||
needs: changes
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
if: ${{ needs.changes.outputs.prettier == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
@ -140,7 +140,7 @@ jobs:
|
|||
|
||||
python:
|
||||
needs: changes
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
if: ${{ needs.changes.outputs.python == 'true' }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
@ -160,7 +160,7 @@ jobs:
|
|||
find . -name "*.py" | grep -v "subprojects" | grep -v "librz/bin/format/xnu/scripts/" | xargs pylint
|
||||
|
||||
licenses:
|
||||
runs-on: ubuntu-20.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
|
|
|
|||
2
.github/workflows/muon.yml
vendored
2
.github/workflows/muon.yml
vendored
|
|
@ -33,7 +33,7 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: ubuntu-muon
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install dependencies
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
name: rizin-shell-parser-tests
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
|
|
|
|||
Loading…
Reference in a new issue