Skip to content

Commit a60995a

Browse files
Bump actions/checkout from 4 to 5 in /.github/workflows (#426)
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]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1f0c157 commit a60995a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: Build
3333
runs-on: ${{ matrix.os }}
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
- name: Setup Environment

.github/workflows/localization_strings_update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
contents: write # 'write' access to repository contents
1111
pull-requests: write # 'write' access to pull requests
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Setup Environment
1515
uses: ./.github/actions/setup_build
1616
- name: Install packages

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
assets: ${{ steps.release.outputs.assets }}
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
if: "${{ github.event.inputs.commit_sha == '' }}"
2828
with:
2929
fetch-depth: 0
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
if: "${{ github.event.inputs.commit_sha != '' }}"
3232
with:
3333
fetch-depth: 0
@@ -70,7 +70,7 @@ jobs:
7070
runs-on: ubuntu-latest
7171
needs: prepare_release
7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474
- name: get values
7575
id: get-fields
7676
env:

.github/workflows/reset_ios_certs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.FASTLANE_GITHUB }}
1616
MATCH_PASSWORD: ${{ secrets.FASTLANE_MATCH_PASSWORD }}
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Setup Environment
2020
uses: ./.github/actions/setup_build
2121
- run: echo "$APPLE_SECRETS" > APPLE_SECRETS.json

0 commit comments

Comments
 (0)