Skip to content

Commit 9a916ee

Browse files
Bump actions/checkout from 4 to 5 (#31)
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 43dc4fc commit 9a916ee

13 files changed

+15
-15
lines changed

.github/workflows/example_reusable-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
runs-on: ubuntu-22.04
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@v5
118118
with:
119119
fetch-depth: 1
120120
- name: Download All Matrix Artifacts

.github/workflows/reusable_create-release-bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
CHECKOUT_REF: 722626ac96e0e8569ba587bd228b9468f6e49ead # Latest commit hash for development
6262
steps:
6363
- name: Checkout shared-workflows repository
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
repository: aerospike/shared-workflows
6767
ref: ${{ env.CHECKOUT_REF }}

.github/workflows/reusable_execute-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
CHECKOUT_REF: 722626ac96e0e8569ba587bd228b9468f6e49ead # Latest commit hash for development
9797
steps:
9898
- name: Checkout shared-workflows repository
99-
uses: actions/checkout@v4
99+
uses: actions/checkout@v5
100100
with:
101101
repository: aerospike/shared-workflows
102102
ref: ${{ env.CHECKOUT_REF }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Checkout source repository
107107
if: inputs.source-path != ''
108-
uses: actions/checkout@v4
108+
uses: actions/checkout@v5
109109
with:
110110
repository: ${{ inputs.source-repository }}
111111
ref: ${{ inputs.source-ref }}

.github/workflows/reusable_sign-artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
CHECKOUT_REF: 722626ac96e0e8569ba587bd228b9468f6e49ead # Latest commit hash for development
6262
steps:
6363
- name: Checkout shared-workflows repository
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
repository: aerospike/shared-workflows
6767
ref: ${{ env.CHECKOUT_REF }}

.github/workflows/reusable_upload-artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
CHECKOUT_REF: 722626ac96e0e8569ba587bd228b9468f6e49ead # Latest commit hash for development
6868
steps:
6969
- name: Checkout shared-workflows repository
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
repository: aerospike/shared-workflows
7373
ref: ${{ env.CHECKOUT_REF }}

.github/workflows/test_create-release-bundle-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
- name: Install dependencies
3030
run: |
3131
sudo apt-get update && sudo apt-get install jq -y

.github/workflows/test_execute-build-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-22.04
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
- name: Test Entrypoint
3737
run: |
3838
.github/workflows/execute-build/test-entrypoint.sh

.github/workflows/test_sign-artifacts-workflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- name: Install dpkg-sig
2828
run: |
2929
sudo apt-get update && sudo apt-get install dpkg-sig dpkg-dev -y

.github/workflows/test_sign-deb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- ubuntu-22.04
1515
#- ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818
- name: Check Ubuntu version
1919
# This action only supports Ubuntu 22.04. 24.04 has removed dpkg-sig
2020
run: |

.github/workflows/test_sign-file.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- ubuntu-22.04
1515
# - ubuntu-24.04
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: setup GPG
2020
uses: aerospike/shared-workflows/.github/actions/setup-gpg@dda8173aca1f1e73f95267572a7d3849cd00f1b8 # v1.0.0

0 commit comments

Comments
 (0)