Skip to content

Commit dbc36a1

Browse files
authored
Fix CI (#109)
1 parent c36e4b3 commit dbc36a1

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/test.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
default:
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
14+
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
1515
cache: [true, false]
1616
runs-on: ${{ matrix.os }}
1717
name: default ${{ matrix.cache == true && 'with' || 'without' }} cache (${{ matrix.os }})
@@ -76,7 +76,7 @@ jobs:
7676
custom-pixi-version:
7777
strategy:
7878
matrix:
79-
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
79+
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
8080
runs-on: ${{ matrix.os }}
8181
steps:
8282
- uses: actions/checkout@v4
@@ -113,7 +113,7 @@ jobs:
113113
install-path:
114114
strategy:
115115
matrix:
116-
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
116+
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
117117
runs-on: ${{ matrix.os }}
118118
steps:
119119
- uses: actions/checkout@v4
@@ -126,7 +126,7 @@ jobs:
126126
global-install:
127127
strategy:
128128
matrix:
129-
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
129+
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
130130
runs-on: ${{ matrix.os }}
131131
steps:
132132
- uses: actions/checkout@v4
@@ -579,7 +579,7 @@ jobs:
579579
name: multiple-environments (${{ matrix.os }}, cache=${{ matrix.cache }})
580580
strategy:
581581
matrix:
582-
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
582+
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
583583
cache: ['true', 'false']
584584
runs-on: ${{ matrix.os }}
585585
steps:
@@ -617,7 +617,7 @@ jobs:
617617
strategy:
618618
fail-fast: false
619619
matrix:
620-
os: [windows-latest, ubuntu-latest, macos-latest, macos-14]
620+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
621621
steps:
622622
- uses: actions/checkout@v4
623623
- name: Move pixi files
@@ -633,7 +633,7 @@ jobs:
633633
strategy:
634634
fail-fast: false
635635
matrix:
636-
os: [windows-latest, ubuntu-latest, macos-latest, macos-14]
636+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
637637
steps:
638638
- uses: actions/checkout@v4
639639
- name: Move pixi files
@@ -658,7 +658,7 @@ jobs:
658658
strategy:
659659
fail-fast: false
660660
matrix:
661-
os: [windows-latest, ubuntu-latest, macos-latest, macos-14]
661+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
662662
steps:
663663
- uses: actions/checkout@v4
664664
- name: Move pixi files
@@ -682,7 +682,7 @@ jobs:
682682
strategy:
683683
fail-fast: false
684684
matrix:
685-
os: [windows-latest, ubuntu-latest, macos-latest, macos-14]
685+
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
686686
steps:
687687
- uses: actions/checkout@v4
688688
- name: Move pixi files

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m
2525
```yml
2626
- uses: prefix-dev/[email protected]
2727
with:
28-
pixi-version: v0.20.1
28+
pixi-version: v0.21.1
2929
cache: true
3030
auth-host: prefix.dev
3131
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

test/no-lockfile/pixi.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Add a short description here"
55
authors = ["Pavel Zwerschke <[email protected]>"]
66
channels = ["conda-forge"]
7-
platforms = ["linux-64", "osx-64", "win-64"]
7+
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
88

99
[tasks]
1010
test = "python -c 'print(\"Hello world!\")'"

0 commit comments

Comments
 (0)