Skip to content

Commit

Permalink
CONFIG: Update workflows to use macOS 14 and M1 runners (#151)
Browse files Browse the repository at this point in the history
* CONFIG: Update workflows to use M1 runners

* Update CodeQL action version

* Change CodeQL to v2

* Fix for CodeQL swift build

* Fix for CodeQL init

* Fix for CodeQL init

* Use ubuntu runner for CodeQL

* Revert changes to CodeQL workflow
  • Loading branch information
adamayoung authored Jan 31, 2024
1 parent edaf126 commit 97cfb00
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:
build-test:
name: Build and Test
runs-on: macos-13
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -38,7 +38,7 @@ jobs:

build-and-test-platforms:
name: Build and Test (${{ matrix.name }})
runs-on: macos-13
runs-on: macos-14
continue-on-error: true
strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: swift
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -42,6 +42,6 @@ jobs:
run: swift build --build-tests

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:swift"
category: "/language:swift"
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:
jobs:
integration-test:
name: Integration Test
runs-on: macos-13
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 97cfb00

Please sign in to comment.