Skip to content

Commit 8b775fe

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 44eb1c6 commit 8b775fe

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/auto-assign-assignees-as-reviewers.yml

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

1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Get PR details
1919
id: pr

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ jobs:
5858
}
5959
6060
- name: Checkout base branch
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
with:
6363
ref: ${{ github.event.pull_request.base.ref }}
6464
repository: ${{ github.event.pull_request.head.repo.full_name }}
6565
path: base
6666

6767
- name: Checkout PR branch
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
ref: ${{ github.event.pull_request.head.ref }}
7171
repository: ${{ github.event.pull_request.head.repo.full_name }}

.github/workflows/check-android-content-scope-experiments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Use Node.js 20
2222
uses: actions/setup-node@v5
2323
with:

.github/workflows/msp-filter-stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
with:
1414
repository: duckduckgo/privacy-configuration
1515
path: privacy-configuration/

.github/workflows/publish-test-url.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
cancel-in-progress: false
1212
steps:
1313
- name: Checkout the repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: Use Node.js 20
1616
uses: actions/setup-node@v5
1717
with:
@@ -23,7 +23,7 @@ jobs:
2323
run: npm run build
2424

2525
- name: Checkout preview-pages branch
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
ref: preview-pages
2929
path: pages-branch

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
unit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Use Node.js 20
1414
uses: actions/setup-node@v5
1515
with:
@@ -22,7 +22,7 @@ jobs:
2222
lint:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
- name: Use Node.js 20
2727
uses: actions/setup-node@v5
2828
with:

0 commit comments

Comments
 (0)