Skip to content

Commit 07b8662

Browse files
committed
CI: update actions/checkout and apache/skywalking-eyes
1 parent 4d21256 commit 07b8662

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/full-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
rustfmt:
3636
runs-on: ubuntu-20.04
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939

4040
- name: "Install Rust"
4141
uses: ./.github/composite/rust
@@ -50,7 +50,7 @@ jobs:
5050
doc-lints:
5151
runs-on: ubuntu-20.04
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454

5555
- name: "Patch Cargo.toml to use nightly extension API"
5656
run: .github/other/patch-prebuilt.sh nightly
@@ -71,7 +71,7 @@ jobs:
7171
clippy:
7272
runs-on: ubuntu-20.04
7373
steps:
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v4
7575

7676
- name: "Patch Cargo.toml to use nightly extension API"
7777
run: .github/other/patch-prebuilt.sh nightly
@@ -128,7 +128,7 @@ jobs:
128128
rust-special: -msrv
129129

130130
steps:
131-
- uses: actions/checkout@v3
131+
- uses: actions/checkout@v4
132132

133133
- name: "Patch Cargo.toml to use nightly extension API"
134134
# Only on Linux because godot4-prebuilt/nightly branch doesn't have artifacts for other platforms.
@@ -308,7 +308,7 @@ jobs:
308308
rust-target: x86_64-unknown-linux-gnu
309309

310310
steps:
311-
- uses: actions/checkout@v3
311+
- uses: actions/checkout@v4
312312

313313
- name: "Run Godot integration test"
314314
uses: ./.github/composite/godot-itest
@@ -328,10 +328,10 @@ jobs:
328328
license-guard:
329329
runs-on: ubuntu-20.04
330330
steps:
331-
- uses: actions/checkout@v3
331+
- uses: actions/checkout@v4
332332

333333
- name: "Check license headers"
334-
uses: apache/skywalking-eyes/header@v0.4.0
334+
uses: apache/skywalking-eyes/header@v0.5.0
335335
with:
336336
# log: debug # optional: set the log level. The default value is `info`.
337337
config: .github/other/licenserc.yml

.github/workflows/minimal-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
rustfmt:
4242
runs-on: ubuntu-20.04
4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545

4646
- name: "Install Rust"
4747
uses: ./.github/composite/rust
@@ -57,7 +57,7 @@ jobs:
5757
doc-lints:
5858
runs-on: ubuntu-20.04
5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161

6262
- name: "Install Rust"
6363
uses: ./.github/composite/rust
@@ -75,7 +75,7 @@ jobs:
7575
clippy:
7676
runs-on: ubuntu-20.04
7777
steps:
78-
- uses: actions/checkout@v3
78+
- uses: actions/checkout@v4
7979

8080
- name: "Patch Cargo.toml to use nightly extension API"
8181
run: .github/other/patch-prebuilt.sh nightly
@@ -102,7 +102,7 @@ jobs:
102102
name: unit-test
103103
runs-on: ubuntu-20.04
104104
steps:
105-
- uses: actions/checkout@v3
105+
- uses: actions/checkout@v4
106106

107107
- name: "Patch Cargo.toml to use nightly extension API"
108108
run: .github/other/patch-prebuilt.sh nightly
@@ -202,7 +202,7 @@ jobs:
202202
rust-target: x86_64-unknown-linux-gnu
203203

204204
steps:
205-
- uses: actions/checkout@v3
205+
- uses: actions/checkout@v4
206206

207207
- name: "Run Godot integration test"
208208
uses: ./.github/composite/godot-itest
@@ -222,10 +222,10 @@ jobs:
222222
license-guard:
223223
runs-on: ubuntu-20.04
224224
steps:
225-
- uses: actions/checkout@v3
225+
- uses: actions/checkout@v4
226226

227227
- name: "Check and fix license headers"
228-
uses: apache/skywalking-eyes/header@v0.4.0
228+
uses: apache/skywalking-eyes/header@v0.5.0
229229
with:
230230
# log: debug # optional: set the log level. The default value is `info`.
231231
config: .github/other/licenserc.yml

.github/workflows/update-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# Checkout is always needed, for the notify step
2626
- name: "Checkout"
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
# This is just a sanity check to make sure that the follow-up docs generation doesn't break.
3030
# So we use the Rust version provided by the GitHub runners, which hopefully is >= MSRV.

0 commit comments

Comments
 (0)