Skip to content

Commit 7f67fa1

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 75a1379 commit 7f67fa1

File tree

6 files changed

+23
-23
lines changed

6 files changed

+23
-23
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: ⬆️ Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
- name: 🔧 Setup java
2424
uses: actions/setup-java@v5
2525
with:
@@ -139,7 +139,7 @@ jobs:
139139
working-directory: app
140140
steps:
141141
- name: ⬆️ Checkout
142-
uses: actions/checkout@v5
142+
uses: actions/checkout@v6
143143
- name: Make yq tool available on Windows runners
144144
run: |
145145
choco install yq
@@ -193,7 +193,7 @@ jobs:
193193
working-directory: app
194194
steps:
195195
- name: ⬆️ Checkout
196-
uses: actions/checkout@v5
196+
uses: actions/checkout@v6
197197
- uses: subosito/[email protected]
198198
with:
199199
flutter-version-file: app/pubspec.yaml
@@ -238,7 +238,7 @@ jobs:
238238
working-directory: app
239239
steps:
240240
- name: ⬆️ Checkout
241-
uses: actions/checkout@v5
241+
uses: actions/checkout@v6
242242
- name: Get dependencies
243243
run: |
244244
sudo apt-get update
@@ -373,7 +373,7 @@ jobs:
373373
runs-on: ${{ matrix.arch.image }}
374374
steps:
375375
- name: ⬆️ Checkout
376-
uses: actions/checkout@v5
376+
uses: actions/checkout@v6
377377
- name: Add snapcraft directory
378378
run: |
379379
mkdir -p snap
@@ -399,7 +399,7 @@ jobs:
399399
working-directory: app
400400
steps:
401401
- name: ⬆️ Checkout
402-
uses: actions/checkout@v5
402+
uses: actions/checkout@v6
403403
- uses: subosito/[email protected]
404404
with:
405405
flutter-version-file: app/pubspec.yaml
@@ -451,7 +451,7 @@ jobs:
451451
working-directory: app
452452
steps:
453453
- name: ⬆️ Checkout
454-
uses: actions/checkout@v5
454+
uses: actions/checkout@v6
455455
- uses: subosito/[email protected]
456456
with:
457457
flutter-version-file: app/pubspec.yaml
@@ -484,7 +484,7 @@ jobs:
484484
if: github.event_name != 'pull_request'
485485
steps:
486486
- name: ⬆️ Checkout
487-
uses: actions/checkout@v5
487+
uses: actions/checkout@v6
488488
- name: Set Docker tag
489489
id: docker_tag
490490
run: |
@@ -530,7 +530,7 @@ jobs:
530530
- build-ipa
531531
steps:
532532
- name: ⬆️ Checkout
533-
uses: actions/checkout@v5
533+
uses: actions/checkout@v6
534534
env:
535535
CI_PAT: ${{ secrets.CI_PAT }}
536536
with:
@@ -801,7 +801,7 @@ jobs:
801801
PLAY_STORE_CREDENTIALS: ${{ secrets.PLAY_STORE_CREDENTIALS }}
802802
steps:
803803
- name: ⬆️ Checkout
804-
uses: actions/checkout@v5
804+
uses: actions/checkout@v6
805805
with:
806806
token: ${{ secrets.CI_PAT }}
807807
- name: Setup git
@@ -854,7 +854,7 @@ jobs:
854854
needs: [deploy]
855855
runs-on: windows-latest
856856
steps:
857-
- uses: actions/checkout@v5
857+
- uses: actions/checkout@v6
858858
with:
859859
token: ${{ secrets.CI_PAT }}
860860
- if: ${{ github.ref == 'refs/tags/stable' }}

.github/workflows/calibreapp-image-actions.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 Repo
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Compress Images
2222
uses: calibreapp/image-actions@main

.github/workflows/compress-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: Compress Images
1616
id: calibre
1717
uses: calibreapp/image-actions@main

.github/workflows/dart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
working-directory: ${{ matrix.projects }}
1414
steps:
1515
- name: ⬆️ Checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- uses: subosito/[email protected]
1818
with:
1919
flutter-version-file: app/pubspec.yaml
2020
cache: true
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222
- name: Print Dart SDK version
2323
run: |
2424
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: app
5050
steps:
5151
- name: ⬆️ Checkout
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
- uses: subosito/[email protected]
5454
with:
5555
flutter-version-file: app/pubspec.yaml

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
update-changelog:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
token: ${{ secrets.CI_PAT }}
2323
fetch-depth: 0
@@ -61,7 +61,7 @@ jobs:
6161
version: ${{ steps.setup.outputs.FLOW_VERSION }}
6262
build_number: ${{ steps.setup.outputs.FLOW_BUILD_NUMBER }}
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v6
6565
with:
6666
token: ${{ secrets.CI_PAT }}
6767
ref: ${{ github.ref }}
@@ -121,7 +121,7 @@ jobs:
121121
- update-changelog
122122
- release
123123
steps:
124-
- uses: actions/checkout@v5
124+
- uses: actions/checkout@v6
125125
with:
126126
token: ${{ secrets.CI_PAT }}
127127
fetch-depth: 0
@@ -166,14 +166,14 @@ jobs:
166166
steps:
167167
- name: Checkout main
168168
if: ${{ github.ref == 'refs/heads/develop' }}
169-
uses: actions/checkout@v5
169+
uses: actions/checkout@v6
170170
with:
171171
token: ${{ secrets.CI_PAT }}
172172
fetch-depth: 0
173173
ref: main
174174
- name: Checkout develop
175175
if: ${{ github.ref == 'refs/heads/main' }}
176-
uses: actions/checkout@v5
176+
uses: actions/checkout@v6
177177
with:
178178
token: ${{ secrets.CI_PAT }}
179179
fetch-depth: 0
@@ -214,7 +214,7 @@ jobs:
214214
runs-on: ubuntu-24.04
215215
needs: [release]
216216
steps:
217-
- uses: actions/checkout@v5
217+
- uses: actions/checkout@v6
218218
with:
219219
token: ${{ secrets.CI_PAT }}
220220
- name: Get information

0 commit comments

Comments
 (0)