Skip to content

Commit cd5ef35

Browse files
committed
build(workflows): update actions/checkout to v5
Updated the GitHub Actions workflow files to use the newer actions/checkout@v5 across all workflow definitions. This change ensures better performance and access to the latest features provided by the updated action version. Signed-off-by: diverger <[email protected]>
1 parent a4c7f5f commit cd5ef35

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/action-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020

2121
- name: Setup Node.js
2222
uses: actions/setup-node@v4
@@ -221,7 +221,7 @@ jobs:
221221

222222
steps:
223223
- name: Checkout
224-
uses: actions/checkout@v4
224+
uses: actions/checkout@v5
225225

226226
- name: Setup Node.js
227227
uses: actions/setup-node@v4

.github/workflows/build-and-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: github.repository == 'diverger/gh-oss-helper' || github.event_name == 'pull_request'
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
token: ${{ secrets.GITHUB_TOKEN }}
3838

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v4

.github/workflows/manual-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
echo ""
6969
7070
- name: Checkout
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272

7373
- name: Setup Node.js
7474
uses: actions/setup-node@v4

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0
2424

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Node.js ${{ matrix.node-version }}
2424
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)