diff --git a/.github/workflows/ci-fastlane-release_beta_internal.yml b/.github/workflows/ci-fastlane-release_beta_internal.yml index 6c2ab29c25..36b575406c 100644 --- a/.github/workflows/ci-fastlane-release_beta_internal.yml +++ b/.github/workflows/ci-fastlane-release_beta_internal.yml @@ -37,8 +37,9 @@ jobs: with: fetch-depth: 1 # shallow clone - - name: Install mise tools - uses: jdx/mise-action@v2 + - name: Setup mise + run: | + echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH - name: bundle install run: | diff --git a/.github/workflows/ci-linter-swiftformat.yml b/.github/workflows/ci-linter-swiftformat.yml index 4355e52ba7..1c26138e80 100644 --- a/.github/workflows/ci-linter-swiftformat.yml +++ b/.github/workflows/ci-linter-swiftformat.yml @@ -24,8 +24,9 @@ jobs: fetch-depth: 0 # Fetch all history for all branches and tags lfs: true - - name: Install mise tools - uses: jdx/mise-action@v2 + - name: Setup mise + run: | + echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH - name: Run swiftformat run: | diff --git a/.github/workflows/ci-linter-swiftlint.yml b/.github/workflows/ci-linter-swiftlint.yml index 5fb5063756..54a9f26748 100644 --- a/.github/workflows/ci-linter-swiftlint.yml +++ b/.github/workflows/ci-linter-swiftlint.yml @@ -24,8 +24,9 @@ jobs: fetch-depth: 0 # Fetch all history for all branches and tags lfs: true - - name: Install mise tools - uses: jdx/mise-action@v2 + - name: Setup mise + run: | + echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH - name: Run swiftlint run: | diff --git a/.github/workflows/ci-tuist-build.yml b/.github/workflows/ci-tuist-build.yml index bc81831849..cc7856aa94 100644 --- a/.github/workflows/ci-tuist-build.yml +++ b/.github/workflows/ci-tuist-build.yml @@ -30,8 +30,9 @@ jobs: fetch-depth: 1 # shallow clone lfs: true - - name: Install mise tools - uses: jdx/mise-action@v2 + - name: Setup mise + run: | + echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH - name: tuist fetch run: | diff --git a/.github/workflows/ci-tuist-unit_tests.yml b/.github/workflows/ci-tuist-unit_tests.yml index 9b4c546e4c..afeb06d730 100644 --- a/.github/workflows/ci-tuist-unit_tests.yml +++ b/.github/workflows/ci-tuist-unit_tests.yml @@ -30,8 +30,9 @@ jobs: fetch-depth: 1 # shallow clone lfs: true - - name: Install mise tools - uses: jdx/mise-action@v2 + - name: Setup mise + run: | + echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH - name: tuist fetch run: |