Skip to content

Commit 58c366d

Browse files
committed
Upgrade actions/checkout to v4
1 parent 83910bd commit 58c366d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
IMAGE_NAME: ghcr.io/integer32llc/rust-playground-ci-rust-${{ matrix.channel }}
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
ref: "${{ github.event.pull_request.head.sha }}"
3333
- name: Set up Docker Buildx
@@ -56,7 +56,7 @@ jobs:
5656
if: 'github.event_name == ''push'' || contains(github.event.pull_request.labels.*.name, ''CI: approved'')'
5757
steps:
5858
- name: Checkout code
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060
with:
6161
ref: "${{ github.event.pull_request.head.sha }}"
6262
- name: Install Rust
@@ -85,7 +85,7 @@ jobs:
8585
if: 'github.event_name == ''push'' || contains(github.event.pull_request.labels.*.name, ''CI: approved'')'
8686
steps:
8787
- name: Checkout code
88-
uses: actions/checkout@v3
88+
uses: actions/checkout@v4
8989
with:
9090
ref: "${{ github.event.pull_request.head.sha }}"
9191
- name: Configure node
@@ -140,7 +140,7 @@ jobs:
140140
working-directory: tests
141141
steps:
142142
- name: Checkout code
143-
uses: actions/checkout@v3
143+
uses: actions/checkout@v4
144144
with:
145145
ref: "${{ github.event.pull_request.head.sha }}"
146146
- name: Configure Ruby

.github/workflows/cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
continue-on-error: true
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
- name: Set up Docker Buildx
3030
uses: docker/setup-buildx-action@v2
3131
with:

ci/workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ components:
77

88
- checkout: &checkout
99
name: "Checkout code"
10-
uses: actions/checkout@v3
10+
uses: actions/checkout@v4
1111

1212
# This should only be used when we know that the code being tested
1313
# doesn't make use of our secrets or elevated GitHub token.
1414
- checkout_pr: &checkout_pr
1515
name: "Checkout code"
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919

0 commit comments

Comments
 (0)