Skip to content

Commit ebbaa9d

Browse files
chore(deps): 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] <support@github.com>
1 parent dbfea5f commit ebbaa9d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
outputs:
1212
earlybird_next_version: ${{ steps.getversion.outputs.earlybird_next_version }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
token: ${{ secrets.GITHUB_TOKEN }}
1717
- uses: actions/setup-node@v4
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
go-version: ^1.18
3535
- name: Checkout repo
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
- name: Build project
3838
run: ./build.sh ${{ needs.get_next_version.outputs.earlybird_next_version }}
3939
- name: Upload artifacts
@@ -49,7 +49,7 @@ jobs:
4949
name: Release
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
with:
5454
token: ${{ secrets.GITHUB_TOKEN}}
5555
- name: Download earlybird artifacts

.github/workflows/test-and-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
with:
1818
go-version: ^1.18
1919
- name: Checkout repo
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
- name: Build and Test
2222
run: ./build.sh

0 commit comments

Comments
 (0)