Skip to content

Commit afde56d

Browse files
authored
Update actions/checkout from v4.1.1 to v6.0.2 (#137)
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 bef49e8 commit afde56d

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout main
20-
uses: actions/checkout@v4.1.1
20+
uses: actions/checkout@v6.0.2
2121
with:
2222
ref: "main"
2323
token: ${{ secrets.RELEASE_TOKEN }}
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Checkout main
51-
uses: actions/checkout@v4.1.1
51+
uses: actions/checkout@v6.0.2
5252
with:
5353
ref: "main"
5454
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
@@ -44,7 +44,7 @@ jobs:
4444
--health-retries 5
4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@v4.1.1
47+
uses: actions/checkout@v6.0.2
4848
- name: Unit tests
4949
run: make unit-tests config=debug ssl=libressl
5050
- name: Integration tests

.github/workflows/build-ci-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: pg-ssl
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4.1.1
16+
uses: actions/checkout@v6.0.2
1717
- name: Set up Docker Buildx
1818
# v3.10.0
1919
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2

.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
@@ -52,7 +52,7 @@ jobs:
5252
--health-retries 5
5353
steps:
5454
- name: Checkout code
55-
uses: actions/checkout@v4.1.1
55+
uses: actions/checkout@v6.0.2
5656
- name: Unit tests
5757
run: make unit-tests config=debug ssl=libressl
5858
- name: Integration tests

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout main
24-
uses: actions/checkout@v4.1.1
24+
uses: actions/checkout@v6.0.2
2525
with:
2626
ref: "main"
2727
token: ${{ secrets.RELEASE_TOKEN }}
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ubuntu-latest
6565
steps:
6666
- name: Checkout main
67-
uses: actions/checkout@v4.1.1
67+
uses: actions/checkout@v6.0.2
6868
with:
6969
ref: "main"
7070
token: ${{ secrets.RELEASE_TOKEN }}
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
steps:
9191
- name: Checkout main
92-
uses: actions/checkout@v4.1.1
92+
uses: actions/checkout@v6.0.2
9393
with:
9494
ref: "main"
9595
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)