Skip to content

Commit

Permalink
ci: migrate to macos-12 (#453)
Browse files Browse the repository at this point in the history
The macos-11 label has been deprecated and will no longer be available
after 28 June 2024.
  • Loading branch information
tisonkun committed Jul 3, 2024
1 parent 68e2681 commit 2facca3
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/check
Expand All @@ -26,9 +26,9 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
- windows-latest
- ubuntu-22.04
- macos-13
- windows-2022
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -37,7 +37,7 @@ jobs:
command: build

build_under_wasm:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -46,7 +46,7 @@ jobs:
cargo build --target wasm32-unknown-unknown
build_single_feature:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
feature:
Expand All @@ -70,9 +70,9 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- macos-11
- windows-latest
- ubuntu-22.04
- macos-13
- windows-2022
steps:
- uses: actions/checkout@v4
- name: Build
Expand All @@ -82,7 +82,7 @@ jobs:
args: --all-features

unit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write
steps:
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
run: cargo test --doc

test_gcs_web_identify:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: "read"
id-token: "write"
Expand All @@ -159,7 +159,7 @@ jobs:
REQSIGN_GOOGLE_CREDENTIAL_PATH: ${{steps.auth.outputs.credentials_file_path}}

test_tencent_cloud_web_identify:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: "read"
id-token: "write"
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
REQSIGN_TENCENT_COS_REGION: ${{ secrets.REQSIGN_TENCENT_COS_REGION }}

test_aws_web_identity:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
contents: "read"
id-token: "write"
Expand Down

0 comments on commit 2facca3

Please sign in to comment.