Skip to content

Commit 4df4409

Browse files
committed
Merge branch 'master' into v1
2 parents 5503f15 + f5298dd commit 4df4409

File tree

5 files changed

+132
-155
lines changed

5 files changed

+132
-155
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Download source
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Install Python
17-
uses: actions/setup-python@v5
17+
uses: actions/setup-python@v6
1818
with:
19-
python-version: '3.13'
19+
python-version: '3.14'
2020
- name: Install dependencies
2121
run: pip install --no-deps -r requirements/requirements-docs.txt
2222
- name: Fetch branch
2323
run: git fetch origin v1:v1
2424
- name: Build site
2525
run: mkdocs build -f docs/mkdocs.yml --strict
2626
- name: Upload to GitHub Pages
27-
uses: actions/upload-pages-artifact@v3
27+
uses: actions/upload-pages-artifact@v4
2828
with:
2929
path: site
3030
deploy:

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os:
1818
- ubuntu-latest
1919
- macos-latest # arm64
20-
- macos-13 # x64
20+
- macos-15-intel # x64
2121
- windows-latest
2222
config:
2323
- {}
@@ -34,7 +34,7 @@ jobs:
3434
run:
3535
shell: bash
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
- run: npm install --only=prod
3939
- uses: ./
4040
with: ${{ matrix.config }}
@@ -82,6 +82,6 @@ jobs:
8282
test:
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- run: npm install
8787
- run: npm test

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os:
1818
- ubuntu-latest
1919
- macos-latest # arm64
20-
- macos-13 # x64
20+
- macos-15-intel # x64
2121
- windows-latest
2222
config:
2323
- {}
@@ -34,7 +34,7 @@ jobs:
3434
run:
3535
shell: bash
3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

3939
- uses: crystal-lang/install-crystal@v1
4040
with: ${{ matrix.config }}

0 commit comments

Comments
 (0)