Skip to content

Commit 4f5a0c3

Browse files
build(deps): bump actions/checkout from 6 to 7 (#2795)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jonathan Kingston <jkingston@duckduckgo.com>
1 parent d94a5cb commit 4f5a0c3

14 files changed

Lines changed: 27 additions & 27 deletions

.github/workflows/asana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
!startsWith(github.event.pull_request.head.ref, 'claude/')
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- uses: duckduckgo/action-asana-sync@v11
2424
with:
2525
ASANA_ACCESS_TOKEN: ${{ secrets.ASANA_ACCESS_TOKEN }}

.github/workflows/auto-respond-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111

1212
steps:
1313
- name: Checkout base branch
14-
uses: actions/checkout@v6
14+
uses: actions/checkout@v7
1515
with:
1616
ref: ${{ github.event.pull_request.base.ref }}
1717
repository: ${{ github.event.pull_request.head.repo.full_name }}
1818
path: base
1919

2020
- name: Checkout PR branch
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222
with:
2323
ref: ${{ github.event.pull_request.head.ref }}
2424
repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/bot-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
permissions:
2020
contents: write
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
with:
2424
ref: ${{ github.ref }}
2525
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build-branch.yml

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

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@v7
2222

2323
- name: Use Node.js
2424
uses: actions/setup-node@v6
@@ -238,7 +238,7 @@ jobs:
238238
runs-on: ubuntu-latest
239239
steps:
240240
- name: Checkout repository
241-
uses: actions/checkout@v6
241+
uses: actions/checkout@v7
242242

243243
- name: Delete build branch
244244
env:

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

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- uses: actions/setup-node@v6
2121
with:
2222
node-version-file: '.nvmrc'

.github/workflows/codeql-analysis.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL

.github/workflows/coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 15
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020
- name: Use Node.js
2121
uses: actions/setup-node@v6
2222
with:
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: ubuntu-latest
5555
timeout-minutes: 15
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v7
5858
- name: Use Node.js
5959
uses: actions/setup-node@v6
6060
with:
@@ -92,7 +92,7 @@ jobs:
9292
runs-on: ubuntu-latest
9393
needs: [unit-coverage, integration-coverage]
9494
steps:
95-
- uses: actions/checkout@v6
95+
- uses: actions/checkout@v7
9696
- name: Use Node.js
9797
uses: actions/setup-node@v6
9898
with:

.github/workflows/cursor-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
}
109109
110110
- name: Checkout base branch
111-
uses: actions/checkout@v6
111+
uses: actions/checkout@v7
112112
with:
113113
ref: ${{ github.event.pull_request.base.ref }}
114114
sparse-checkout: |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
github.event.pull_request.head.repo.full_name == github.repository
2828
steps:
2929
- name: Checkout workflow scripts
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131
with:
3232
ref: ${{ github.event.pull_request.base.ref }}
3333
sparse-checkout: .github/scripts

.github/workflows/review-check.yml

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

2424
- name: Checkout base branch
2525
if: ${{ github.event_name != 'merge_group' }}
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727
with:
2828
ref: ${{ github.event.pull_request.base.ref }}
2929
sparse-checkout: |

0 commit comments

Comments
 (0)