Skip to content

Commit 80e6cf4

Browse files
committed
Move to actions/checkout@v4 to avoid warnings.
Current CI runs are reporting: > Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
1 parent 07f591b commit 80e6cf4

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/cocoapods.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
pod_configuration: ["Debug", "Release"]
3232
extra_flags: ["", "--use-static-frameworks"]
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
# Need cocoapods 1.12+ for watchOS to work again.
3636
- name: Update Cocoapods
3737
run: gem update cocoapods
@@ -64,7 +64,7 @@ jobs:
6464
matrix:
6565
pod_configuration: ["Debug", "Release"]
6666
steps:
67-
- uses: actions/checkout@v3
67+
- uses: actions/checkout@v4
6868
- name: "macOS"
6969
run: |
7070
pod lib lint --verbose \

.github/workflows/examples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
matrix:
3838
SAMPLE: ["Calendar", "Drive", "YouTube", "Storage"]
3939
steps:
40-
- uses: actions/checkout@v3
40+
- uses: actions/checkout@v4
4141
- name: Build Debug
4242
run: |
4343
set -eu

.github/workflows/service_generator.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
CONFIGURATION: ["debug", "release"]
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- name: Build ServiceGenerator
4040
run: |
4141
set -eu
@@ -49,7 +49,7 @@ jobs:
4949
matrix:
5050
CONFIGURATION: ["Debug", "Release"]
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
- name: Build ServiceGenerator
5454
run: |
5555
set -eu

.github/workflows/swiftpm.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
matrix:
3131
CONFIGURATION: ["debug", "release"]
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- name: Build and Test Library
3535
run: |
3636
set -eu
@@ -47,7 +47,7 @@ jobs:
4747
PLATFORM: ["ios", "macos", "tvos", "watchos"]
4848
CONFIGURATION: ["Debug", "Release"]
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v4
5151
- name: Build and Test Library
5252
run: |
5353
set -eu

0 commit comments

Comments
 (0)