Skip to content

Commit 8888cd4

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

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_python_runtime.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
STACK_VERSION: "22"
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
- name: Build Docker image
4747
run: docker build --platform="linux/amd64" --pull --tag buildenv --build-arg=STACK_VERSION builds/
4848
- name: Compile and package Python runtime
@@ -67,7 +67,7 @@ jobs:
6767
STACK_VERSION: "24"
6868
steps:
6969
- name: Checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
- name: Build Docker image
7272
run: docker build --platform="linux/${{ matrix.arch }}" --pull --tag buildenv --build-arg=STACK_VERSION builds/
7373
- name: Compile and package Python runtime

.github/workflows/check_changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: (!contains(github.event.pull_request.labels.*.name, 'skip changelog'))
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Check that CHANGELOG is touched
1818
run: |
1919
git fetch origin ${{ github.base_ref }} --depth 1 && \

.github/workflows/ci.yml

Lines changed: 3 additions & 3 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: Install Ruby and dependencies
2424
uses: ruby/setup-ruby@v1
2525
with:
@@ -51,7 +51,7 @@ jobs:
5151
RSPEC_RETRY_RETRY_COUNT: 1
5252
steps:
5353
- name: Checkout
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
- name: Install Ruby and dependencies
5656
uses: ruby/setup-ruby@v1
5757
with:
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-24.04
6868
steps:
6969
- name: Checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
# These test both the local development `make run` workflow and that `bin/report` completes successfully
7272
# for both passing and failing builds (since `bin/report` can't easily be tested via Hatchet tests).
7373
- name: Run buildpack using default app fixture

.github/workflows/hatchet_app_cleaner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
HEROKU_DISABLE_AUTOUPDATE: 1
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
- name: Install Ruby and dependencies
2424
uses: ruby/setup-ruby@v1
2525
with:

0 commit comments

Comments
 (0)