Skip to content

Commit 68c2ce7

Browse files
chore: update all workflow action versions to latest
- actions/checkout: v4/master → v6 (all workflows) - actions/cache: v4 → v5 (build.yml, build_pr.yml) - dependabot/fetch-metadata: v1.1.1 → v3.0.0 (auto-approve, auto-merge) - amannn/action-semantic-pull-request: v5 → v6 (pr-title) - markdown-links.yml: pin checkout to v6 instead of floating @master Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ac37291 commit 68c2ce7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/auto-approve.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Dependabot metadata
1717
id: metadata
18-
uses: dependabot/fetch-metadata@v1.1.1
18+
uses: dependabot/fetch-metadata@v3.0.0
1919
with:
2020
github-token: '${{ secrets.GITHUB_TOKEN }}'
2121
- name: Approve a PR

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Dependabot metadata
1717
id: metadata
18-
uses: dependabot/fetch-metadata@v1.1.1
18+
uses: dependabot/fetch-metadata@v3.0.0
1919
with:
2020
github-token: '${{ secrets.GITHUB_TOKEN }}'
2121
- name: Enable auto-merge for Dependabot PRs

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v6
1212
- name: restore_cache
13-
uses: actions/cache@v4
13+
uses: actions/cache@v5
1414
with:
1515
key: yarn-packages-${{ github.ref_name }}-${{ hashFiles('yarn.lock') }}
1616
path: node_modules/

.github/workflows/build_pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
container:
99
image: node:24.14
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212
- name: restore_cache
13-
uses: actions/cache@v4
13+
uses: actions/cache@v5
1414
with:
1515
key: yarn-packages-${{ github.ref_name }}-${{ hashFiles('yarn.lock') }}
1616
path: node_modules/
@@ -31,7 +31,7 @@ jobs:
3131
executor: docker-harness
3232
install_manually: true
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
- name: Install Python and required packages
3636
run: |
3737
apt-get update

.github/workflows/markdown-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
markdown-link-check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v6
1313
with:
1414
fetch-depth: 1
1515
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
main:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: amannn/action-semantic-pull-request@v5
17+
- uses: amannn/action-semantic-pull-request@v6
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
tag_name: ${{ steps.release.outputs.tag_name }}
2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

0 commit comments

Comments
 (0)