Skip to content

Commit

Permalink
Fix CI images to ubuntu-22.04 and macos-12 (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazarmy authored Nov 18, 2023
1 parent 673bdc3 commit 4ea002e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019, macos-latest]
os: [ubuntu-22.04, windows-2019, macos-12]

steps:
- name: Checkout rz-bindgen
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: lint
on: push
jobs:
licenses:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout rz-bindgen
uses: actions/checkout@v3
- name: REUSE compliance check
uses: fsfe/reuse-action@v1

python:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout rz-bindgen
uses: actions/checkout@v3
Expand All @@ -35,7 +35,7 @@ jobs:
if: ${{ always() }}

codeql:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
security-events: write
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
extract-rizin-version:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
outputs:
rizin_version: ${{ steps.extract_version.outputs.result }}
steps:
Expand All @@ -21,7 +21,7 @@ jobs:
rizin_ref: ${{ needs.extract-rizin-version.outputs.rizin_version }}

publish-pypi:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: [build]
steps:
- name: Download artifacts
Expand Down

0 comments on commit 4ea002e

Please sign in to comment.