Skip to content

Commit 1a71e42

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...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] <support@github.com>
1 parent eb0e486 commit 1a71e42

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build-and-quality-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Checkout source branch
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v5
1515

1616
- name: Install Cocoapods
1717
run: gem install cocoapods

.github/workflows/check-pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout source branch
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v5
1414

1515
- name: Check PR title
1616
uses: rudderlabs/github-action-check-pr-title@v1.0.7

.github/workflows/deploy-cocoapods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: macOS-latest
1111
steps:
1212
- name: Checkout source branch
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v5
1414

1515
- name: Install Cocoapods
1616
run: gem install cocoapods

.github/workflows/draft-new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: startsWith(github.ref, 'refs/heads/fix/') || startsWith(github.ref, 'refs/heads/feature/')
1111
steps:
1212
- name: Checkout source branch
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

.github/workflows/manage-github-issue-for-outdated-pods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: macos-latest
1111
name: Check outdate pods and create issue if it doesn't exist
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v5
1414

1515
- name: Check outdated pods and create issue
1616
id: check-outdated-pods-and-create-issue

.github/workflows/publish-new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
echo "release_version=$VERSION" >> $GITHUB_OUTPUT
2222
2323
- name: Checkout source branch
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727

0 commit comments

Comments
 (0)