Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 19 additions & 47 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,56 +7,28 @@ on:
schedule:
- cron: 0 0 * * *

jobs:
versions-macOS-12:
name: macOS 12
runs-on: macos-12
strategy:
matrix:
xcode-version: ['13.2.1', '13.4', '14.0.1', '14', '14.2', latest, latest-stable]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: ./
name: Setup Xcode
id: setup-xcode
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Print output variables
run: |
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
echo "Path: ${{ steps.setup-xcode.outputs.path }}"
permissions:
contents: read

versions-macOS-13:
name: macOS 13
runs-on: macos-13
strategy:
matrix:
xcode-version: ['14', '14.2', '14.3.1', latest, latest-stable]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4

- uses: ./
name: Setup Xcode
id: setup-xcode
with:
xcode-version: ${{ matrix.xcode-version }}
- name: Print output variables
run: |
echo "Version: ${{ steps.setup-xcode.outputs.version }}"
echo "Path: ${{ steps.setup-xcode.outputs.path }}"

versions-macOS-14:
name: macOS 14
runs-on: macos-14
jobs:
versions:
name: ${{ matrix.runner }} / ${{ matrix.xcode-version }}
runs-on: ${{ matrix.runner }}
strategy:
matrix:
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#xcode
xcode-version: ['14.3.1', '15.2', '15.3', latest, latest-stable]
runner: [macos-15, macos-26]
xcode-version: [latest, latest-stable]
include:
# https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode
- runner: macos-15
xcode-version: '16.2'
- runner: macos-15
xcode-version: '16.4'
# https://github.com/actions/runner-images/blob/main/images/macos/macos-26-Readme.md#xcode
- runner: macos-26
xcode-version: '26.2'
- runner: macos-26
xcode-version: '26.3'
fail-fast: false
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set Node.JS
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: npm install
run: npm install
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
required: false
default: latest
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
branding:
icon: 'code'
Expand Down
38 changes: 29 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.3",
"@types/node": "^24.0.0",
"@types/plist": "^3.0.2",
"@types/semver": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.2",
Expand Down