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
6 changes: 3 additions & 3 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ on:
- '*'
jobs:
build:
runs-on: macos-14
runs-on: macos-latest
steps:
- name: Checkout last commit
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: true

Expand All @@ -32,7 +32,7 @@ jobs:
run: periphery scan --relative-results --skip-build --index-store-path build/Index.noindex/DataStore

- name: Upload Squirrel artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Squirrel-${{ env.git_ref_name }}.zip
path: package/*.pkg
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: pull request ci
on: [pull_request]
jobs:
build:
runs-on: macos-14
runs-on: macos-latest
steps:
- name: Checkout last commit
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: true

Expand All @@ -29,7 +29,7 @@ jobs:
run: periphery scan --relative-results --skip-build --index-store-path build/Index.noindex/DataStore

- name: Upload Squirrel artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Squirrel-${{ env.git_ref_name }}.zip
path: package/*.pkg
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:

jobs:
build:
runs-on: macos-14
runs-on: macos-latest
env:
SQUIRREL_BUNDLED_RECIPES: 'lotem/rime-octagram-data lotem/rime-octagram-data@hant'
steps:
- name: Checkout last commit
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: true
Expand Down