Skip to content

Commit 626d186

Browse files
chore(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 49a7067 commit 626d186

22 files changed

Lines changed: 32 additions & 32 deletions

.github/workflows/binary-compatibility-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444
fetch-tags: 0

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
3232
fetch-depth: 0
@@ -58,7 +58,7 @@ jobs:
5858
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v6
6262
with:
6363
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
6464
fetch-depth: 0
@@ -121,7 +121,7 @@ jobs:
121121
- cluster/test distributed-data/test cluster-tools/test cluster-metrics/test
122122
steps:
123123
- name: Checkout
124-
uses: actions/checkout@v4
124+
uses: actions/checkout@v6
125125
with:
126126
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
127127
fetch-depth: 0
@@ -164,7 +164,7 @@ jobs:
164164
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
165165
steps:
166166
- name: Checkout
167-
uses: actions/checkout@v4
167+
uses: actions/checkout@v6
168168
with:
169169
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
170170
fetch-depth: 0

.github/workflows/dependency-graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# to submit dependencies
3434
contents: write
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v6
3737
- name: Install sbt
3838
uses: sbt/setup-sbt@1cad58d595b729a71ca2254cdf5b43dd6f42d4bb # v1.1.18
3939
- uses: scalacenter/sbt-dependency-submission@64084844d2b0a9b6c3765f33acde2fbe3f5ae7d3 # v3.1.0

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Checkout current branch (full)
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535
persist-credentials: false

.github/workflows/generate-doc-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
if: github.repository == 'apache/pekko'
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
fetch-depth: 0
3636
fetch-tags: true

.github/workflows/headers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-22.04
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Setup Java 8
3434
uses: actions/setup-java@v4

.github/workflows/link-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.repository == 'apache/pekko'
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525

2626
- name: Checkout GitHub merge
2727
if: github.event.pull_request

.github/workflows/nightly-1.0-builds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.repository == 'apache/pekko'
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
fetch-tags: true
@@ -75,7 +75,7 @@ jobs:
7575
- cluster-typed/test cluster-sharding-typed/test
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v6
7979
with:
8080
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
8181
fetch-depth: 0
@@ -126,7 +126,7 @@ jobs:
126126
javaVersion: [8, 11, 17, 21]
127127
steps:
128128
- name: Checkout
129-
uses: actions/checkout@v4
129+
uses: actions/checkout@v6
130130
with:
131131
fetch-depth: 0
132132
fetch-tags: true

.github/workflows/nightly-1.1-builds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.repository == 'apache/pekko'
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
fetch-tags: true
@@ -76,7 +76,7 @@ jobs:
7676
- cluster-typed/test cluster-sharding-typed/test
7777
steps:
7878
- name: Checkout
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v6
8080
with:
8181
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
8282
fetch-depth: 0
@@ -128,7 +128,7 @@ jobs:
128128
javaVersion: [8, 11, 17, 21]
129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v4
131+
uses: actions/checkout@v6
132132
with:
133133
fetch-depth: 0
134134
fetch-tags: true

.github/workflows/nightly-builds-aeron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- cluster/test cluster-typed/test
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
3535
fetch-depth: 0

0 commit comments

Comments
 (0)