Skip to content

Commit 5b73707

Browse files
committed
Update github actions versions
1 parent b890985 commit 5b73707

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/deploying.yml

Lines changed: 3 additions & 3 deletions
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@v2
16+
- uses: actions/checkout@v3
1717
- uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: '2.7'
@@ -25,14 +25,14 @@ jobs:
2525
brew install go || brew link --overwrite go
2626
brew install swiftlint || brew link --overwrite swiftlint
2727
gem install bundler
28-
- uses: actions/cache@v2
28+
- uses: actions/cache@v3
2929
id: carthage-cache
3030
with:
3131
path: Carthage
3232
key: ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Cartfile.resolved') }}
3333
restore-keys: |
3434
${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-
35-
- uses: actions/cache@v2
35+
- uses: actions/cache@v3
3636
id: gopenpgp-cache
3737
with:
3838
path: go

.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@v2
9+
- uses: actions/checkout@v3
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@v2
29+
- uses: actions/checkout@v3
3030
- uses: ruby/setup-ruby@v1
3131
with:
3232
ruby-version: '2.7'

.github/workflows/testing.yml

Lines changed: 3 additions & 3 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@v2
9+
- uses: actions/checkout@v3
1010
- uses: ruby/setup-ruby@v1
1111
with:
1212
ruby-version: '2.7'
@@ -18,14 +18,14 @@ jobs:
1818
brew install go || brew link --overwrite go
1919
brew install swiftlint || brew link --overwrite swiftlint
2020
gem install bundler
21-
- uses: actions/cache@v2
21+
- uses: actions/cache@v3
2222
id: carthage-cache
2323
with:
2424
path: Carthage
2525
key: ${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Cartfile.resolved') }}
2626
restore-keys: |
2727
${{ runner.os }}-carthage-${{ secrets.CACHE_VERSION }}-
28-
- uses: actions/cache@v2
28+
- uses: actions/cache@v3
2929
id: gopenpgp-cache
3030
with:
3131
path: go

0 commit comments

Comments
 (0)