Skip to content

Commit a56d4d9

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 237b0a7 commit a56d4d9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cocoapods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Publish to CocoaPods
1111
runs-on: macos-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Check release validity
1515
run: sh .github/scripts/check-release.sh
1616
- name: Lint podspec before submitting

.github/workflows/pre-release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
DEVELOPER_DIR: /Applications/Xcode_12.4.app/Contents/Developer
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Download the latest stable version of Meilisearch
2323
run: |
2424
# This script is used in the SDK CIs to fetch the latest Meilisearch RC name (ex: v0.16.0rc2).

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- name: Download the latest stable version of Meilisearch
2727
run: |
2828
curl -L https://raw.githubusercontent.com/meilisearch/meilisearch/main/download-latest.sh | sh
@@ -37,23 +37,23 @@ jobs:
3737
name: linter-check
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- name: GitHub Action for SwiftLint
4242
uses: norio-nomura/[email protected]
4343

4444
pod-spec-lint:
4545
name: pod-spec-lint
4646
runs-on: macos-latest
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
- name: Run CocoaPods pod linter
5050
run: pod spec lint
5151

5252
yaml-lint:
5353
name: Yaml linting check
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v5
5757
- name: Yaml lint check
5858
uses: ibiqlik/action-yamllint@v3
5959
with:

0 commit comments

Comments
 (0)