Skip to content

Commit f00bc28

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

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 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@v4
22+
uses: actions/checkout@v5
2323
- name: 🔧 Setup java
2424
uses: actions/setup-java@v4
2525
with:
@@ -95,7 +95,7 @@ jobs:
9595
working-directory: app
9696
steps:
9797
- name: ⬆️ Checkout
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999
- name: Make yq tool available on Windows runners
100100
run: |
101101
choco install yq
@@ -151,7 +151,7 @@ jobs:
151151
working-directory: app
152152
steps:
153153
- name: ⬆️ Checkout
154-
uses: actions/checkout@v4
154+
uses: actions/checkout@v5
155155
- uses: subosito/[email protected]
156156
with:
157157
flutter-version-file: app/pubspec.yaml
@@ -188,7 +188,7 @@ jobs:
188188
working-directory: app
189189
steps:
190190
- name: ⬆️ Checkout
191-
uses: actions/checkout@v4
191+
uses: actions/checkout@v5
192192
- name: Get dependencies
193193
run: |
194194
sudo apt-get update
@@ -323,7 +323,7 @@ jobs:
323323
runs-on: ${{ matrix.arch.image }}
324324
steps:
325325
- name: ⬆️ Checkout
326-
uses: actions/checkout@v4
326+
uses: actions/checkout@v5
327327
- name: Add snapcraft directory
328328
run: |
329329
mkdir -p snap
@@ -360,7 +360,7 @@ jobs:
360360
runs-on: ${{ matrix.arch.image }}
361361
steps:
362362
- name: ⬆️ Checkout
363-
uses: actions/checkout@v4
363+
uses: actions/checkout@v5
364364
- name: Get dependencies
365365
run: |
366366
sudo apt-get update
@@ -448,7 +448,7 @@ jobs:
448448
working-directory: app
449449
steps:
450450
- name: ⬆️ Checkout
451-
uses: actions/checkout@v4
451+
uses: actions/checkout@v5
452452
- uses: subosito/[email protected]
453453
with:
454454
flutter-version-file: app/pubspec.yaml
@@ -500,7 +500,7 @@ jobs:
500500
working-directory: app
501501
steps:
502502
- name: ⬆️ Checkout
503-
uses: actions/checkout@v4
503+
uses: actions/checkout@v5
504504
- uses: subosito/[email protected]
505505
with:
506506
flutter-version-file: app/pubspec.yaml
@@ -533,7 +533,7 @@ jobs:
533533
if: github.event_name != 'pull_request'
534534
steps:
535535
- name: ⬆️ Checkout
536-
uses: actions/checkout@v4
536+
uses: actions/checkout@v5
537537
- name: Set Docker tag
538538
id: docker_tag
539539
run: |
@@ -580,7 +580,7 @@ jobs:
580580
- build-ipa
581581
steps:
582582
- name: ⬆️ Checkout
583-
uses: actions/checkout@v4
583+
uses: actions/checkout@v5
584584
env:
585585
CI_PAT: ${{ secrets.CI_PAT }}
586586
with:
@@ -791,7 +791,7 @@ jobs:
791791
PLAY_STORE_CREDENTIALS: ${{ secrets.PLAY_STORE_CREDENTIALS }}
792792
steps:
793793
- name: ⬆️ Checkout
794-
uses: actions/checkout@v4
794+
uses: actions/checkout@v5
795795
with:
796796
token: ${{ secrets.CI_PAT }}
797797
- name: Setup git
@@ -843,7 +843,7 @@ jobs:
843843
needs: [deploy]
844844
runs-on: windows-latest
845845
steps:
846-
- uses: actions/checkout@v4
846+
- uses: actions/checkout@v5
847847
with:
848848
token: ${{ secrets.CI_PAT }}
849849
- 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@v4
19+
uses: actions/checkout@v5
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@v4
14+
uses: actions/checkout@v5
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@v4
16+
uses: actions/checkout@v5
1717
- uses: subosito/[email protected]
1818
with:
1919
flutter-version-file: app/pubspec.yaml
2020
cache: true
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
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@v4
17+
- uses: actions/checkout@v5
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@v4
52+
uses: actions/checkout@v5
5353
- uses: subosito/[email protected]
5454
with:
5555
flutter-version-file: app/pubspec.yaml

.github/workflows/release.yml

Lines changed: 7 additions & 7 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@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
token: ${{ secrets.CI_PAT }}
2323
fetch-depth: 0
@@ -60,7 +60,7 @@ jobs:
6060
version: ${{ steps.setup.outputs.FLOW_VERSION }}
6161
build_number: ${{ steps.setup.outputs.FLOW_BUILD_NUMBER }}
6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v5
6464
with:
6565
token: ${{ secrets.CI_PAT }}
6666
ref: ${{ github.ref }}
@@ -87,7 +87,7 @@ jobs:
8787
FLOW_VERSION="${{ env.FLOW_VERSION }}"
8888
git tag -fa v${{ env.FLOW_VERSION }} -m "Release ${FLOW_VERSION}"
8989
git push origin v${FLOW_VERSION} -f
90-
- uses: actions/checkout@v4
90+
- uses: actions/checkout@v5
9191
with:
9292
token: ${{ secrets.CI_PAT }}
9393
fetch-depth: 0
@@ -123,7 +123,7 @@ jobs:
123123
- update-changelog
124124
- release
125125
steps:
126-
- uses: actions/checkout@v4
126+
- uses: actions/checkout@v5
127127
with:
128128
token: ${{ secrets.CI_PAT }}
129129
fetch-depth: 0
@@ -167,14 +167,14 @@ jobs:
167167
steps:
168168
- name: Checkout main
169169
if: ${{ github.ref == 'refs/heads/develop' }}
170-
uses: actions/checkout@v4
170+
uses: actions/checkout@v5
171171
with:
172172
token: ${{ secrets.CI_PAT }}
173173
fetch-depth: 0
174174
ref: main
175175
- name: Checkout develop
176176
if: ${{ github.ref == 'refs/heads/main' }}
177-
uses: actions/checkout@v4
177+
uses: actions/checkout@v5
178178
with:
179179
token: ${{ secrets.CI_PAT }}
180180
fetch-depth: 0
@@ -214,7 +214,7 @@ jobs:
214214
runs-on: ubuntu-24.04
215215
needs: [release]
216216
steps:
217-
- uses: actions/checkout@v4
217+
- uses: actions/checkout@v5
218218
with:
219219
token: ${{ secrets.CI_PAT }}
220220
- name: Get information

0 commit comments

Comments
 (0)