Skip to content

Commit 18736c5

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 84abfed commit 18736c5

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ${{ matrix.os.name }}
3131
steps:
3232
- name: ⬆️ Checkout
33-
uses: actions/checkout@v5
33+
uses: actions/checkout@v6
3434
- name: Install yq
3535
if: ${{ matrix.os.name == 'windows-2025' }}
3636
run: choco install yq
@@ -67,7 +67,7 @@ jobs:
6767
if: github.event_name != 'pull_request'
6868
steps:
6969
- name: ⬆️ Checkout
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
- name: Set Docker tag
7272
id: docker_tag
7373
run: |
@@ -109,7 +109,7 @@ jobs:
109109
- build-server
110110
steps:
111111
- name: ⬆️ Checkout
112-
uses: actions/checkout@v5
112+
uses: actions/checkout@v6
113113
env:
114114
CI_PAT: ${{ secrets.CI_PAT }}
115115
with:

.github/workflows/dart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
working-directory: ${{ matrix.projects }}
1515
steps:
1616
- name: ⬆️ Checkout
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- uses: dart-lang/setup-dart@v1
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- name: Print Dart SDK version
2121
run: |
2222
dart --version

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run:
1515
working-directory: docs
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
- name: Install pnpm
1919
uses: pnpm/action-setup@v4
2020
with:
@@ -49,7 +49,7 @@ jobs:
4949
working-directory: server
5050
steps:
5151
- name: ⬆️ Checkout
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
- name: Extract Dart SDK version from pubspec.yaml
5454
id: dart_version
5555
shell: bash

.github/workflows/post_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
IS_PRERELEASE: ${{ github.event.release.prerelease }}
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)