Skip to content

Commit

Permalink
Move to actions/checkout@v4 to avoid warnings.
Browse files Browse the repository at this point in the history
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/.
  • Loading branch information
thomasvl committed Jan 26, 2024
1 parent 07f591b commit 80e6cf4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
pod_configuration: ["Debug", "Release"]
extra_flags: ["", "--use-static-frameworks"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Need cocoapods 1.12+ for watchOS to work again.
- name: Update Cocoapods
run: gem update cocoapods
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
matrix:
pod_configuration: ["Debug", "Release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "macOS"
run: |
pod lib lint --verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
matrix:
SAMPLE: ["Calendar", "Drive", "YouTube", "Storage"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Debug
run: |
set -eu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/service_generator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
CONFIGURATION: ["debug", "release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build ServiceGenerator
run: |
set -eu
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
CONFIGURATION: ["Debug", "Release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build ServiceGenerator
run: |
set -eu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swiftpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
matrix:
CONFIGURATION: ["debug", "release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and Test Library
run: |
set -eu
Expand All @@ -47,7 +47,7 @@ jobs:
PLATFORM: ["ios", "macos", "tvos", "watchos"]
CONFIGURATION: ["Debug", "Release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and Test Library
run: |
set -eu
Expand Down

0 comments on commit 80e6cf4

Please sign in to comment.