Skip to content

Bump aws-actions/configure-aws-credentials from 5.1.0 to 6.2.1 in /.github/actions/rl-scanner #168

Bump aws-actions/configure-aws-credentials from 5.1.0 to 6.2.1 in /.github/actions/rl-scanner

Bump aws-actions/configure-aws-credentials from 5.1.0 to 6.2.1 in /.github/actions/rl-scanner #168

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- synchronize
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
env:
ruby: '3.3.1'
jobs:
test:
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
runs-on: macos-15
env:
xcodeproj: Auth0UniversalComponents.xcodeproj
strategy:
matrix:
platform:
- { os: iOS, scheme: Auth0UniversalComponents.iOS }
- { os: macOS, scheme: Auth0UniversalComponents.macOS }
- { os: visionOS, scheme: Auth0UniversalComponents.visionOS }
xcode:
- '26.2'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up environment
uses: ./.github/actions/setup
with:
ruby: ${{ env.ruby }}
xcode: ${{ matrix.xcode }}
- name: Run tests
uses: ./.github/actions/test
with:
xcode: ${{ matrix.xcode }}
scheme: ${{ matrix.platform.scheme }}
platform: ${{ matrix.platform.os }}
- name: Convert coverage report
if: ${{ matrix.platform.os == 'iOS' }}
run: bundle exec slather coverage -x --scheme ${{ matrix.platform.scheme }} ${{ env.xcodeproj }}
- name: Upload coverage report
if: ${{ matrix.platform.os == 'iOS' }}
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # pin@5.5.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-package:
name: Test Swift package using Xcode ${{ matrix.xcode }}
runs-on: macos-15
strategy:
matrix:
xcode:
- '26.2'
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up environment
uses: ./.github/actions/setup
with:
ruby: ${{ env.ruby }}
xcode: ${{ matrix.xcode }}
- name: Run tests
run: swift test --no-parallel
swiftlint:
name: Lint code with SwiftLint
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install SwiftLint
run: brew install swiftlint
- name: Run SwiftLint
run: swiftlint lint --reporter github-actions-logging