Skip to content

Commit 4364ed4

Browse files
authored
Merge pull request #1030 from shivammathur/dependabot/github_actions/develop/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents 8dcd37f + aaed462 commit 4364ed4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 2
2222

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-latest
102102
steps:
103103
- name: Checkout
104-
uses: actions/checkout@v5
104+
uses: actions/checkout@v6
105105
with:
106106
repository: ${{ github.repository }}.wiki
107107
- name: Download artifacts

.github/workflows/node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
operating-system: [ubuntu-latest, windows-latest, macos-latest]
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 2
3535

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
key: cache-v5
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343

4444
- name: Setup cache environment
4545
id: cache-env

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020
- name: Checkout release
2121
if: github.event_name != 'workflow_dispatch'
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Checkout tag
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
if: github.event_name == 'workflow_dispatch'
2727
with:
2828
ref: ${{ github.event.inputs.tag }}

0 commit comments

Comments
 (0)