Skip to content

Commit

Permalink
fix: upgrade to using macos-13 for mac workflows (#1692)
Browse files Browse the repository at this point in the history
## Checklist

- [ ] I have read the [contribution
guidelines](https://github.com/ooni/probe-cli/blob/master/CONTRIBUTING.md)
- [ ] reference issue for this pull request: <!-- add URL here -->
- [ ] if you changed anything related to how experiments work and you
need to reflect these changes in the ooni/spec repository, please link
to the related ooni/spec pull request: <!-- add URL here -->
- [ ] if you changed code inside an experiment, make sure you bump its
version number

<!-- Reminder: Location of the issue tracker:
https://github.com/ooni/probe -->

## Description

macos-12 has been deprecated and it seems, our workflows are taking
quite long in the queue. This should fix it since a macos-13 runner
should be more available.
  • Loading branch information
DecFox authored Feb 27, 2025
1 parent ac8eb3c commit d6055a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
build_ios_mobile:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
build_darwin_cli:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
path: ./CLI/miniooni-darwin-arm64

test_darwin_cli:
runs-on: macos-12
runs-on: macos-13
needs: build_darwin_cli
steps:
- uses: actions/checkout@v4
Expand All @@ -74,7 +74,7 @@ jobs:
shell: bash

publish_darwin_cli:
runs-on: macos-12
runs-on: macos-13
needs: test_darwin_cli
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/netxlite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: "${{ matrix.os }}"
strategy:
matrix:
os: [ "ubuntu-22.04", "windows-2022", "macos-12" ]
os: [ "ubuntu-22.04", "windows-2022", "macos-13" ]
steps:

- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion internal/cmd/ghgen/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const (
runsOnUbuntu = "ubuntu-22.04"

// runsOnMacOS is the macOS system where to run.
runsOnMacOS = "macos-12"
runsOnMacOS = "macos-13"

// runsOnWindows is the windows system where to run.
runsOnWindows = "windows-2022"
Expand Down

0 comments on commit d6055a0

Please sign in to comment.