Skip to content

Commit

Permalink
.github/workflows: use macos-14 (latest appears to resolve to 12)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraettinger committed Apr 20, 2024
1 parent ee2e694 commit 82f515b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/flowctl-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
assetName: flowctl-x86_64-linux
# On mac, it's the opposite. Programs built on the latest macos can run on older versions,
# but not the other way around.
- os: macos-latest
- os: macos-14
assetName: flowctl-multiarch-macos
steps:
- name: Checkout code
Expand All @@ -42,7 +42,7 @@ jobs:
# Mac build steps:
- name: Setup mac signing certificate
if: matrix.config.os == 'macos-latest'
if: matrix.config.os == 'macos-14'
env:
MAC_SIGNING_CERTIFICATE_BASE64: ${{ secrets.MAC_SIGNING_CERTIFICATE_BASE64 }}
MAC_CERTIFICATE_PASSWORD: ${{ secrets.MAC_CERTIFICATE_PASSWORD }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# This one mac build runs on both intel and m1 macs
- name: Build Mac
if: matrix.config.os == 'macos-latest'
if: matrix.config.os == 'macos-14'
env:
MAC_CERTIFICATE_IDENTITY: ${{ secrets.MAC_CERTIFICATE_IDENTITY }}
# The toolchain action always gives you the default target, but we always need both
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flowctl-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
jobs:
test:
name: Test flowctl on macos
runs-on: macos-latest
runs-on: macos-14
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit 82f515b

Please sign in to comment.