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 1e8fd7c commit 4a83c0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
PLATFORM: ["ios", "macos", "tvos", "watchos --skip-tests"]
CONFIGURATION: ["Debug", "Release"]
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
4 changes: 2 additions & 2 deletions .github/workflows/swiftpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
matrix:
CONFIGURATION: ["debug", "release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and Test
run: |
set -eu
Expand All @@ -49,7 +49,7 @@ jobs:
PLATFORM: ["ios", "macos", "tvos", "watchos"]
CONFIGURATION: ["Debug", "Release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build and Test
run: |
set -eu
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
PLATFORM: ["macOS"]
CONFIGURATION: ["Debug", "Release"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: |
set -eu
Expand Down

0 comments on commit 4a83c0b

Please sign in to comment.