Skip to content

Commit cd5d531

Browse files
committed
Update actions/checkout from v4.1.1 to v6.0.2
Node 20 reaches EOL in April 2026 and GitHub will force Node 24 after June 2, 2026. v6 already uses Node 24 natively.
1 parent 19b418e commit cd5d531

8 files changed

Lines changed: 14 additions & 14 deletions

.github/workflows/announce-a-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout main
17-
uses: actions/checkout@v4.1.1
17+
uses: actions/checkout@v6.0.2
1818
with:
1919
ref: "main"
2020
token: ${{ secrets.RELEASE_TOKEN }}
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout main
48-
uses: actions/checkout@v4.1.1
48+
uses: actions/checkout@v6.0.2
4949
with:
5050
ref: "main"
5151
token: ${{ secrets.RELEASE_TOKEN }}

.github/workflows/breakage-against-ponyc-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container:
1515
image: ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-3.6.0:nightly
1616
steps:
17-
- uses: actions/checkout@v4.1.1
17+
- uses: actions/checkout@v6.0.2
1818
- name: Test
1919
run: make test config=debug ssl=3.0.x
2020
- name: Send alert on failure

.github/workflows/generate-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
image: ghcr.io/ponylang/library-documentation-action-v2:release
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4.1.1
27+
uses: actions/checkout@v6.0.2
2828
- name: Generate documentation
2929
run: /entrypoint.py
3030
env:

.github/workflows/lint-action-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4.1.1
18+
uses: actions/checkout@v6.0.2
1919
- name: Check workflow files
2020
uses: docker://ghcr.io/ponylang/shared-docker-ci-actionlint:20260311
2121
with:

.github/workflows/pr-repo-hygiene.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Lint bash, docker, markdown, and yaml
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4.1.1
17+
- uses: actions/checkout@v6.0.2
1818
- name: Lint codebase
1919
uses: docker://github/super-linter:v3.8.3
2020
env:
@@ -29,7 +29,7 @@ jobs:
2929
name: Verify CHANGELOG is valid
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4.1.1
32+
- uses: actions/checkout@v6.0.2
3333
- name: Verify CHANGELOG
3434
uses: docker://ghcr.io/ponylang/changelog-tool:release
3535
with:

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
container:
2424
image: ghcr.io/ponylang/shared-docker-ci-standard-builder-with-openssl-3.6.0:release
2525
steps:
26-
- uses: actions/checkout@v4.1.1
26+
- uses: actions/checkout@v6.0.2
2727
- name: Test
2828
run: make test config=debug ssl=3.0.x

.github/workflows/prepare-for-a-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout main
21-
uses: actions/checkout@v4.1.1
21+
uses: actions/checkout@v6.0.2
2222
with:
2323
ref: "main"
2424
token: ${{ secrets.RELEASE_TOKEN }}
@@ -61,7 +61,7 @@ jobs:
6161
runs-on: ubuntu-latest
6262
steps:
6363
- name: Checkout main
64-
uses: actions/checkout@v4.1.1
64+
uses: actions/checkout@v6.0.2
6565
with:
6666
ref: "main"
6767
token: ${{ secrets.RELEASE_TOKEN }}
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ubuntu-latest
8787
steps:
8888
- name: Checkout main
89-
uses: actions/checkout@v4.1.1
89+
uses: actions/checkout@v6.0.2
9090
with:
9191
ref: "main"
9292
token: ${{ secrets.RELEASE_TOKEN }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout main
25-
uses: actions/checkout@v4.1.1
25+
uses: actions/checkout@v6.0.2
2626
with:
2727
ref: "main"
2828
token: ${{ secrets.RELEASE_TOKEN }}
@@ -43,7 +43,7 @@ jobs:
4343
image: ghcr.io/ponylang/library-documentation-action-v2:release
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v4.1.1
46+
uses: actions/checkout@v6.0.2
4747
with:
4848
ref: "main"
4949
token: ${{ secrets.RELEASE_TOKEN }}
@@ -69,7 +69,7 @@ jobs:
6969
needs:
7070
- generate-documentation
7171
steps:
72-
- uses: actions/checkout@v4.1.1
72+
- uses: actions/checkout@v6.0.2
7373
with:
7474
ref: "main"
7575
token: ${{ secrets.RELEASE_TOKEN }}

0 commit comments

Comments
 (0)