Skip to content

RFC: migrate HTTP networking from URLSession to Alamofire #64

RFC: migrate HTTP networking from URLSession to Alamofire

RFC: migrate HTTP networking from URLSession to Alamofire #64

Workflow file for this run

name: Security
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * 1' # Weekly on Mondays
permissions:
actions: read
contents: read
security-events: write
jobs:
codeql:
name: CodeQL Analysis
runs-on: macos-latest
strategy:
matrix:
xcode: ["16.4"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Select Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: swift
queries: +security-and-quality
- name: Build Supabase library
run: make XCODEBUILD_ARGUMENT=build PLATFORM=MACOS xcodebuild
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:swift"
dependency-review:
name: Dependency Review
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Dependency Review
uses: actions/dependency-review-action@v4
with:
fail-on-severity: moderate