mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 17:20:10 +08:00
* Update `setup-swift` to v1.22.0 * Configure dependabot to scan `setup-swift` dir * Add reminder to manually update the SHA in CLI test * Add comment on new Dependabot directory
33 lines
1.5 KiB
YAML
33 lines
1.5 KiB
YAML
name: "Set up Swift"
|
|
description: Performs necessary steps to set up appropriate Swift version.
|
|
inputs:
|
|
codeql-path:
|
|
required: true
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Get Swift version
|
|
id: get_swift_version
|
|
# We don't support Swift on Windows or prior versions of CLI.
|
|
if: "(runner.os != 'Windows') && (matrix.version == 'cached' || matrix.version == 'latest' || matrix.version == 'nightly-latest')"
|
|
shell: bash
|
|
env:
|
|
CODEQL_PATH: ${{inputs.codeql-path}}
|
|
run: |
|
|
if [ $RUNNER_OS = "macOS" ]; then
|
|
PLATFORM="osx64"
|
|
else # We do not run this step on Windows.
|
|
PLATFORM="linux64"
|
|
fi
|
|
SWIFT_EXTRACTOR_DIR="$("$CODEQL_PATH" resolve languages --format json | jq -r '.swift[0]')"
|
|
VERSION="$("$SWIFT_EXTRACTOR_DIR/tools/$PLATFORM/extractor" --version | awk '/version/ { print $3 }')"
|
|
# Specify 5.7.0, otherwise setup Action will default to latest minor version.
|
|
if [ $VERSION = "5.7" ]; then
|
|
VERSION="5.7.0"
|
|
fi
|
|
echo "version=$VERSION" | tee -a $GITHUB_OUTPUT
|
|
- uses: swift-actions/setup-swift@da0e3e04b5e3e15dbc3861bd835ad9f0afe56296 # Please update the corresponding SHA in the CLI's CodeQL Action Integration Test.
|
|
if: "(runner.os != 'Windows') && (matrix.version == 'cached' || matrix.version == 'latest' || matrix.version == 'nightly-latest')"
|
|
with:
|
|
swift-version: "${{steps.get_swift_version.outputs.version}}"
|