Skip to content

Commit 839f266

Browse files
committed
chore(workflows): update GitHub Actions checkout and setup-node versions
The GitHub Actions checkout and setup-node versions have been updated to v4 to ensure the latest features and improvements are utilized. This enhances the overall workflow and ensures compatibility with the latest changes in the GitHub Actions ecosystem.
1 parent 3013957 commit 839f266

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

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

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: 'Checkout Repository'
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: 'Dependency Review'
2020
uses: actions/dependency-review-action@v2

.github/workflows/stale.yml

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

2020
steps:
21-
- uses: actions/stale@v5
21+
- uses: actions/stale@v8
2222
with:
2323
repo-token: ${{ secrets.GITHUB_TOKEN }}
2424
days-before-stale: 40

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,10 +375,10 @@ Automate commit message enhancement with GitWiz, now available as a GitHub Actio
375375
permissions: write-all
376376
steps:
377377
- name: Setup Node.js Environment
378-
uses: actions/setup-node@v2
378+
uses: actions/setup-node@v4
379379
with:
380-
node-version: '16'
381-
- uses: actions/checkout@v3
380+
node-version: '18'
381+
- uses: actions/checkout@v4
382382
with:
383383
fetch-depth: 0
384384
- uses: SHSharkar/gitwz@github-action-v1.0.4

0 commit comments

Comments
 (0)