@@ -12,6 +12,9 @@ concurrency:
1212 group : ${{ github.workflow }}-${{ github.ref }}
1313 cancel-in-progress : ${{ github.ref != 'refs/heads/master' }}
1414
15+ env :
16+ ruby : ' 3.3.1'
17+
1518jobs :
1619 authorize :
1720 name : Authorize
@@ -40,11 +43,12 @@ jobs:
4043
4144 steps :
4245 - name : Checkout
43- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
46+ uses : actions/checkout@v4
4447
4548 - name : Set up environment
4649 uses : ./.github/actions/setup
4750 with :
51+ ruby : ${{ env.ruby }}
4852 xcode : ${{ matrix.xcode }}
4953
5054 - name : Run tests
@@ -75,11 +79,12 @@ jobs:
7579
7680 steps :
7781 - name : Checkout
78- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
82+ uses : actions/checkout@v4
7983
8084 - name : Set up environment
8185 uses : ./.github/actions/setup
8286 with :
87+ ruby : ${{ env.ruby }}
8388 xcode : ${{ matrix.xcode }}
8489
8590 - name : Run tests
@@ -96,11 +101,12 @@ jobs:
96101
97102 steps :
98103 - name : Checkout
99- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
104+ uses : actions/checkout@v4
100105
101106 - name : Set up environment
102107 uses : ./.github/actions/setup
103108 with :
109+ ruby : ${{ env.ruby }}
104110 xcode : ${{ matrix.xcode }}
105111
106112 - name : Run pod lib lint
@@ -112,7 +118,7 @@ jobs:
112118
113119 steps :
114120 - name : Checkout
115- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
121+ uses : actions/checkout@v4
116122
117123 - name : Run SwiftLint
118124 run : swiftlint lint --reporter github-actions-logging
0 commit comments