Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @auth0/project-dx-sdks-engineer-codeowner
Comment thread
sanchitmehtagit marked this conversation as resolved.
2 changes: 0 additions & 2 deletions .github/ISSUE_TEMPLATE/Bug Report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ body:
attributes:
label: Checklist
options:
- label: The issue can be reproduced in the [Auth0.swift sample app](https://github.com/auth0-samples/auth0-ios-swift-sample/tree/master/Sample-01) (or N/A).
required: true
- label: I have looked into the [Readme](https://github.com/auth0/ui-components-ios#readme), [Examples](https://github.com/auth0/ui-components-ios/blob/master/EXAMPLES.md), and [FAQ](https://github.com/auth0/ui-components-ios/blob/master/FAQ.md) and have not found a suitable solution or answer.
required: true
- label: I have looked into the [API documentation](https://auth0.github.io/ui-components-ios/documentation/auth0) and have not found a suitable solution or answer.
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ runs:

steps:
- name: Set up Ruby
uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # pin@v1.263.0
uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # pin@v1.268.0
with:
ruby-version: ${{ inputs.ruby }}
bundler-cache: true
cache-version: 1

- name: Setup Xcode
uses: mxcl/xcodebuild@e366f14791346edb74397fe9a762ccee86eddc06 # pin@v3.4.0
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0

Copilot AI Jan 5, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The GitHub Actions pin comment references version v3.4.0, but the commit SHA has been updated. Please verify that the new commit SHA (d3ee9b419c1be9a988086c58fe0988f32d99cfc5) actually corresponds to the v3.4.0 tag of mxcl/xcodebuild, or update the comment to reflect the correct version.

Suggested change
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pinned to d3ee9b419c1be9a988086c58fe0988f32d99cfc5

Copilot uses AI. Check for mistakes.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the correct version number to 3.6.0

with:
xcode: ${{ inputs.xcode }}
action: none
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:

- id: restore-spm-cache
name: Restore SPM cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/Library/Developer/Xcode/DerivedData/**/SourcePackages
key: spm-${{ inputs.platform }}-${{ hashFiles('*.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved') }}-${{ hashFiles('.xcode-version') }}-v1
Expand All @@ -36,7 +36,7 @@ runs:

- id: restore-carthage-cache
name: Restore Carthage cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: Carthage
key: carthage-${{ inputs.platform }}-${{ hashFiles('Cartfile.resolved') }}-${{ hashFiles('.xcode-version') }}-v1
Expand All @@ -47,7 +47,7 @@ runs:
shell: bash

- name: Run tests
uses: mxcl/xcodebuild@e366f14791346edb74397fe9a762ccee86eddc06 # pin@v3.4.0
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0

@pmathew92 pmathew92 Jan 5, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we have two separate hash for the same pinned version ? I think version might have changed

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

checked all the places. Hash for the pinned version 3.4.0 is same across d3ee9b419c1be9a988086c58fe0988f32d99cfc5 @pmathew92

@pmathew92 pmathew92 Jan 6, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The hash is correct but the version you have tagged is wrong. The above hash is for version 3.6.0
https://github.com/mxcl/xcodebuild/releases/tag/v3.6.0

Copilot AI Jan 5, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The GitHub Actions pin comment references version v3.4.0, but the commit SHA has been updated. Please verify that the new commit SHA (d3ee9b419c1be9a988086c58fe0988f32d99cfc5) actually corresponds to the v3.4.0 tag of mxcl/xcodebuild, or update the comment to reflect the correct version.

Suggested change
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pin@v3.4.0
uses: mxcl/xcodebuild@d3ee9b419c1be9a988086c58fe0988f32d99cfc5 # pinned to specific commit d3ee9b4

Copilot uses AI. Check for mistakes.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the correct version number to 3.6.0

with:
xcode: ${{ inputs.xcode }}
scheme: ${{ inputs.scheme }}
Expand Down
19 changes: 8 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
- opened
- synchronize

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
Expand All @@ -19,7 +16,7 @@ env:
jobs:
test:
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
runs-on: macos-26
runs-on: macos-15
Comment thread
sanchitmehtagit marked this conversation as resolved.

env:
xcodeproj: Auth0UIComponents.xcodeproj
Expand All @@ -35,7 +32,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up environment
uses: ./.github/actions/setup
Expand All @@ -62,7 +59,7 @@ jobs:

test-package:
name: Test Swift package using Xcode ${{ matrix.xcode }}
runs-on: macos-26
runs-on: macos-15

strategy:
matrix:
Expand All @@ -71,7 +68,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up environment
uses: ./.github/actions/setup
Expand All @@ -84,7 +81,7 @@ jobs:

pod-lint:
name: Lint podspec using Xcode ${{ matrix.xcode }}
runs-on: macos-26-xlarge
runs-on: macos-15-xlarge

strategy:
matrix:
Expand All @@ -93,7 +90,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up environment
uses: ./.github/actions/setup
Expand All @@ -106,11 +103,11 @@ jobs:

swiftlint:
name: Lint code with SwiftLint
runs-on: macos-26
runs-on: macos-15

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install SwiftLint
run: brew install swiftlint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rl-scanner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/sca_scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: SCA

on:
pull_request:
types:
- opened
- synchronize

jobs:
snyk-cli:
uses: auth0/devsecops-tooling/.github/workflows/sca-scan.yml@main
with:
additional-arguments: "--exclude=README.md"
secrets: inherit
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
.DS_Store

# Auth0UIComponents
Auth0.plist
!Auth0UIComponentsTests/Auth0
**/Auth0.plist
!/Auth0UIComponentsTests/Auth0.plist

# Xcode
build/
Expand Down
Loading
Loading