Skip to content

Commit 358908f

Browse files
committed
Update checkout actions
1 parent ba1a811 commit 358908f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/deploying.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
channel: ['beta', 'release']
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: '2.7'

.github/workflows/linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
swiftformat:
77
runs-on: macos-12
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- uses: ruby/setup-ruby@v1
1111
with:
1212
ruby-version: '2.7'
@@ -26,7 +26,7 @@ jobs:
2626
swiftlint:
2727
runs-on: macos-12
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
- uses: ruby/setup-ruby@v1
3131
with:
3232
ruby-version: '2.7'

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
testing:
77
runs-on: macos-12
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- uses: ruby/setup-ruby@v1
1111
with:
1212
ruby-version: '2.7'
@@ -15,7 +15,7 @@ jobs:
1515
run: |
1616
brew update
1717
brew install carthage swiftformat
18-
brew install go || brew link --overwrite go
18+
brew install go@1.20 || brew link --overwrite go
1919
brew install swiftlint || brew link --overwrite swiftlint
2020
gem install bundler
2121
- uses: actions/cache@v3

0 commit comments

Comments
 (0)