Skip to content

Commit

Permalink
swift audit fixes + small fix to cocoapods version
Browse files Browse the repository at this point in the history
  • Loading branch information
barv-jfrog committed Dec 25, 2024
1 parent 15af55d commit ef3e7e7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/actions/install-and-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,6 @@ runs:
# - name: Setup Go with cache
# uses: jfrog/.github/actions/install-go-with-cache@main

- name: Install Swift on Linux
uses: swift-actions/setup-swift@v2
if: ${{ runner.os == 'Linux'}}

- name: Install Swift on MacOS
run: brew install swift
shell: ${{ runner.os == 'macOS' && 'sh' || 'bash' || 'pwsh' }}
if: ${{ runner.os == 'macOS'}}

- name: Install Swift on Windows
uses: compnerd/gha-setup-swift@main
with:
branch: swift-6.0.2-release
tag: 6.0.2-RELEASE
if: ${{ runner.os == 'Windows'}}

- name: install ruby
uses: ruby/setup-ruby@v1
with:
Expand Down Expand Up @@ -90,3 +74,19 @@ runs:
python -m pip install conan
conan profile detect
shell: ${{ runner.os == 'Windows' && 'powershell' || 'bash' }}

- name: Install Swift on Linux
uses: swift-actions/setup-swift@v2
if: ${{ runner.os == 'Linux'}}

- name: Install Swift on MacOS
run: brew install swift
shell: ${{ runner.os == 'macOS' && 'sh' || 'bash' || 'pwsh' }}
if: ${{ runner.os == 'macOS'}}

- name: Install Swift on Windows
uses: compnerd/gha-setup-swift@main
with:
branch: swift-6.0.2-release
tag: 6.0.2-RELEASE
if: ${{ runner.os == 'Windows'}}

0 comments on commit ef3e7e7

Please sign in to comment.