Skip to content
Closed
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- destination: 'platform=watchOS\ Simulator,name=Apple\ Watch\ Series\ 11\ \(46mm\)'
action: 'test'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Install Extra Packages
run: brew install swiftlint
- name: Create and set the default keychain
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
timeout-minutes: 25
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Create and set the default keychain
run: |
KEYCHAIN_NAME="temporary-${GITHUB_RUN_ID}"
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
needs: linux
runs-on: macos-15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Create and set the default keychain
run: |
KEYCHAIN_NAME="temporary-${GITHUB_RUN_ID}"
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- uses: vapor/swiftly-action@v0.2
with:
toolchain: 6.2.3
Expand All @@ -167,7 +167,7 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Build
uses: skiptools/swift-android-action@v2
with:
Expand All @@ -179,7 +179,7 @@ jobs:
timeout-minutes: 15
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- uses: compnerd/gha-setup-swift@v0.4.0
with:
branch: swift-6.2.3-release
Expand All @@ -199,7 +199,7 @@ jobs:
needs: linux
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Generate Docs
run: set -o pipefail && env NSUnbufferedIO=YES Scripts/generate-documentation
env:
Expand All @@ -209,7 +209,7 @@ jobs:
needs: linux
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Update Framework Version
run: ./Scripts/update_build
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
cocoapods:
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Get release version
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Update Framework Version
Expand All @@ -25,7 +25,7 @@ jobs:
docs:
runs-on: macos-26
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v6.0.2
- name: Get release version
run: echo "TAG=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
- name: Build and Deploy Docs
Expand Down
Loading