Skip to content

Commit 5436b51

Browse files
author
Giorgi Chakhidze
committed
Fix: Switch from macos-13-xlarge (not free) to macos-14 (free) runner
1 parent 97c44cd commit 5436b51

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [ 'ubuntu-20.04', 'windows-2022', 'macos-12', 'macos-13-xlarge' ]
17+
os: [ 'ubuntu-20.04', 'windows-2022', 'macos-12', 'macos-14' ]
1818

1919
runs-on: ${{ matrix.os }}
2020

@@ -124,7 +124,7 @@ jobs:
124124
path: '**/libzstd.dylib'
125125

126126
- name: Upload (MacOS 13 ARM64)
127-
if: ${{ success() && startsWith(matrix.os, 'macos-13') }}
127+
if: ${{ success() && startsWith(matrix.os, 'macos-14') }}
128128
uses: actions/upload-artifact@v4
129129
with:
130130
name: 'libs-macos-arm64-${{ github.ref_name }}'
@@ -170,7 +170,7 @@ jobs:
170170
Shared libraries of Zstandard ${{ github.ref_name }} for MacOS x64
171171
172172
- name: Release (MacOS ARM64)
173-
if: ${{ success() && startsWith(matrix.os, 'macos-13') }}
173+
if: ${{ success() && startsWith(matrix.os, 'macos-14') }}
174174
uses: softprops/action-gh-release@v2
175175
with:
176176
files: '**/libzstd.dylib'

0 commit comments

Comments
 (0)