Skip to content

Commit 90f1f64

Browse files
Bump actions/checkout from 5 to 6 in the dependencies group (#186)
Bumps the dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5072b88 commit 90f1f64

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/api-breakage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
image: swift:5.9
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
# https://github.com/actions/checkout/issues/766

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 15
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Install and run Mosquitto
2525
run: |
2626
brew install mosquitto
@@ -44,7 +44,7 @@ jobs:
4444
timeout-minutes: 15
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
- name: Xcodebuild
4949
run: |
5050
xcodebuild build -scheme mqtt-nio -destination 'platform=iOS Simulator,name=iPhone 16'
@@ -77,7 +77,7 @@ jobs:
7777

7878
steps:
7979
- name: Checkout
80-
uses: actions/checkout@v5
80+
uses: actions/checkout@v6
8181
- name: Restart Mosquitto
8282
# The mosquitto service container is started *before* mqtt-nio is checked
8383
# out. Restarting the container after the checkout step is needed for the

.github/workflows/gen-docs.yml

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

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Install Dependencies

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 15
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 1
1818
- name: run script

0 commit comments

Comments
 (0)