Skip to content

Commit fadaf7d

Browse files
committed
Move to actions/checkout@v4.
Resolves the warnings seen on the actions output: > 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 ea9ac1c commit fadaf7d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
image: swift:${{ matrix.swift }}
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
path: main
4444
- name: Update and install dependencies
@@ -73,7 +73,7 @@ jobs:
7373
key: ${{ runner.os }}-${{ matrix.swift}}-protobuf-${{ steps.get-sha.outputs.sha }}
7474
- name: Checkout protobuf repo
7575
if: steps.cache-protobuf.outputs.cache-hit != 'true'
76-
uses: actions/checkout@v3
76+
uses: actions/checkout@v4
7777
with:
7878
repository: protocolbuffers/protobuf
7979
ref: ${{ steps.get-sha.outputs.sha }}
@@ -117,7 +117,7 @@ jobs:
117117
# Test on the latest Swift release.
118118
image: swift:latest
119119
steps:
120-
- uses: actions/checkout@v3
120+
- uses: actions/checkout@v4
121121
- name: Test
122122
run: |
123123
set -eu
@@ -146,6 +146,6 @@ jobs:
146146
# Test on the latest Swift release.
147147
image: swift:latest
148148
steps:
149-
- uses: actions/checkout@v3
149+
- uses: actions/checkout@v4
150150
- name: Build
151151
run: FuzzTesting/do_build.sh --${{ matrix.swiftpm_config }}-only --run-regressions

.github/workflows/check_upstream_protos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
path: main
1818
- name: Checkout protobufbuffers/protobuf
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
repository: protocolbuffers/protobuf
2222
path: protobuf

.github/workflows/regular_conformance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
image: swift:${{ matrix.swift }}
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
path: main
5252
- name: Update and install dependencies
@@ -75,7 +75,7 @@ jobs:
7575
key: ${{ runner.os }}-${{ matrix.swift}}-protobuf-${{ steps.get-sha.outputs.sha }}
7676
- name: Checkout protobuf repo
7777
if: steps.cache-protobuf.outputs.cache-hit != 'true'
78-
uses: actions/checkout@v3
78+
uses: actions/checkout@v4
7979
with:
8080
repository: protocolbuffers/protobuf
8181
ref: ${{ steps.get-sha.outputs.sha }}

0 commit comments

Comments
 (0)