-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
macos-15 is now available in public beta #982
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ | |
- ubuntu-24.04 | ||
- ubuntu-22.04 | ||
- ubuntu-20.04 | ||
- macos-15 | ||
Check failure on line 18 in .github/workflows/test.yml
|
||
- macos-14 | ||
- macos-13 | ||
- macos-12 | ||
|
@@ -44,7 +45,7 @@ | |
- run: npm run build | ||
- id: setup | ||
name: use the action | ||
uses: ./ | ||
Check failure on line 48 in .github/workflows/test.yml
|
||
with: | ||
redis-version: ${{ matrix.redis }} | ||
|
||
|
@@ -62,6 +63,7 @@ | |
- ubuntu-24.04 | ||
- ubuntu-22.04 | ||
- ubuntu-20.04 | ||
- macos-15 | ||
Check failure on line 66 in .github/workflows/test.yml
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Verify the Similar to the Please refer to the previous comment for suggested fixes and ensure consistency across both jobs. 🧰 Tools🪛 actionlint
🪛 GitHub Check: actionlint
|
||
- macos-14 | ||
- macos-13 | ||
- macos-12 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verify the
macos-15
runner labelThe addition of
macos-15
aligns with the PR objective to support the new macOS version. However,macos-15
is not a known GitHub Actions runner label.Consider the following options:
macos-15
is a custom self-hosted runner, ensure it's properly configured and available.macos-15
withmacos-latest
.macos-14
ormacos-13
.Example fix:
🧰 Tools
🪛 actionlint
🪛 GitHub Check: actionlint
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see rhysd/actionlint#453
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@shogo82148, thank you for pointing out the update in actionlint. I've noted that
macos-15
is now recognized as a valid runner label in GitHub Actions.🐰🤔
✏️ Learnings added