Skip to content

Commit 1a11650

Browse files
Update GitHub Action Versions
1 parent a45714a commit 1a11650

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
5050
SKIP_PREFLIGHT_CHECK: true
5151
steps:
52-
- uses: actions/checkout@v4.2.2
52+
- uses: actions/checkout@v5.0.0
5353
with:
5454
ref: ${{ inputs.sha }}
5555
token: ${{ secrets.RELEASE_TOKEN }}
@@ -90,7 +90,7 @@ jobs:
9090
git commit -n -m 'build(release): bundle distribution files'
9191
9292
- name: Setup Node 24 for semantic-release
93-
uses: actions/setup-node@v4
93+
uses: actions/setup-node@v6.0.0
9494
with:
9595
node-version: '24.x'
9696

.github/workflows/github_actions_version_updater.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

1717
steps:
18-
- uses: actions/checkout@v4.2.2
18+
- uses: actions/checkout@v5.0.0
1919
with:
2020
# [Required] Access token with `workflow` scope.
2121
token: ${{ secrets.RELEASE_TOKEN }}

.github/workflows/integration-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ jobs:
4141

4242
steps:
4343
- name: Checkout this action (PR code)
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5.0.0
4545
with:
4646
path: action-under-test
4747

4848
- name: Setup Node.js for building action
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v6.0.0
5050
with:
5151
node-version: '20.x'
5252
cache: 'npm'
@@ -59,7 +59,7 @@ jobs:
5959
npm run build
6060
6161
- name: Checkout target repository (${{ matrix.repo }})
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5.0.0
6363
with:
6464
repository: ${{ matrix.repo }}
6565
path: test-repo
@@ -171,7 +171,7 @@ jobs:
171171
172172
- name: Upload generated README as artifact
173173
if: always()
174-
uses: actions/upload-artifact@v4
174+
uses: actions/upload-artifact@v5.0.0
175175
with:
176176
name: readme-${{ matrix.artifact_name }}-${{ github.run_number }}
177177
path: test-repo/${{ matrix.readme_path }}

.github/workflows/push_code_linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
3333
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
3434
steps:
35-
- uses: actions/checkout@v4.2.2
35+
- uses: actions/checkout@v5.0.0
3636

3737
- name: Install compatible Nodejs version
3838
id: setup-node
@@ -44,7 +44,7 @@ jobs:
4444
- run: npm run lint:markdown
4545
continue-on-error: true
4646
- name: eslint
47-
uses: reviewdog/action-eslint@v1.33.2
47+
uses: reviewdog/action-eslint@v1.34.0
4848
with:
4949
reporter: github-pr-review # Change reporter.
5050
eslint_flags: src/

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
stale:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/stale@v9
15+
- uses: actions/stale@v10.1.0
1616
with:
1717
repo-token: ${{ secrets.GITHUB_TOKEN }}
1818
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions."

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
env:
3636
SKIP_PREFLIGHT_CHECK: true
3737
steps:
38-
- uses: actions/checkout@v4.2.2
38+
- uses: actions/checkout@v5.0.0
3939
with:
4040
ref: ${{ github.head_ref || github.ref }}
4141

0 commit comments

Comments
 (0)