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: 5 additions & 1 deletion .github/workflows/ci_v26.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,18 @@ jobs:
otp: '27'
elixir: '1.18'
lint: false
- typesense: '26.0'
otp: '28'
elixir: '1.19'
lint: false

services:
typesense:
image: typesense/typesense:${{ matrix.typesense }}

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check for misspellings
uses: codespell-project/actions-codespell@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci_v27.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,18 @@ jobs:
otp: '27'
elixir: '1.18'
lint: false
- typesense: '27.0'
otp: '28'
elixir: '1.19'
lint: false

services:
typesense:
image: typesense/typesense:${{ matrix.typesense }}

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check for misspellings
uses: codespell-project/actions-codespell@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci_v27.1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,18 @@ jobs:
otp: '27'
elixir: '1.18'
lint: false
- typesense: '27.1'
otp: '28'
elixir: '1.19'
lint: false

services:
typesense:
image: typesense/typesense:${{ matrix.typesense }}

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Check for misspellings
uses: codespell-project/actions-codespell@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci_v28.0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
- typesense: '28.0'
otp: '27'
elixir: '1.18'
lint: false
- typesense: '28.0'
otp: '28'
elixir: '1.19'
lint: true

services:
Expand All @@ -44,7 +48,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (bug_risk): Updating to checkout@v6 here should be gated on that version actually existing.

To prevent CI failures, pin to the latest known-good major (or a specific commit) and only switch to v6 after it’s confirmed to exist and be stable.


- name: Check for misspellings
uses: codespell-project/actions-codespell@v2
Expand Down
Loading