Skip to content

Commit d269af9

Browse files
ci(deps): Bump actions/checkout from 5.0.1 to 6.0.0 (#34)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 913ebd9 commit d269af9

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/workflows/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
4242
- id: checkout
4343
name: Checkout ${{ github.head_ref }}
44-
uses: actions/checkout@v5.0.1
44+
uses: actions/checkout@v6.0.0
4545
with:
4646
persist-credentials: false
4747
ref: ${{ github.head_ref }}

.github/workflows/auto-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
run: gh auth status
6666
- id: checkout
6767
name: Checkout ${{ github.head_ref }}
68-
uses: actions/checkout@v5.0.1
68+
uses: actions/checkout@v6.0.0
6969
with:
7070
persist-credentials: false
7171
ref: ${{ github.head_ref }}

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: hmarr/[email protected]
6262
- id: checkout
6363
name: Checkout ${{ env.REF_NAME }}
64-
uses: actions/checkout@v5.0.1
64+
uses: actions/checkout@v6.0.0
6565
with:
6666
persist-credentials: false
6767
ref: ${{ env.REF }}
@@ -95,7 +95,7 @@ jobs:
9595
steps:
9696
- id: checkout
9797
name: Checkout ${{ env.REF_NAME }}
98-
uses: actions/checkout@v5.0.1
98+
uses: actions/checkout@v6.0.0
9999
with:
100100
fetch-depth: 0
101101
persist-credentials: false
@@ -123,7 +123,7 @@ jobs:
123123
steps:
124124
- id: checkout
125125
name: Checkout ${{ env.REF_NAME }}
126-
uses: actions/checkout@v5.0.1
126+
uses: actions/checkout@v6.0.0
127127
with:
128128
persist-credentials: false
129129
ref: ${{ env.REF }}
@@ -159,7 +159,7 @@ jobs:
159159
steps:
160160
- id: checkout
161161
name: Checkout ${{ env.REF_NAME }}
162-
uses: actions/checkout@v5.0.1
162+
uses: actions/checkout@v6.0.0
163163
with:
164164
persist-credentials: false
165165
ref: ${{ env.REF }}
@@ -187,7 +187,7 @@ jobs:
187187
steps:
188188
- id: checkout
189189
name: Checkout ${{ env.REF_NAME }}
190-
uses: actions/checkout@v5.0.1
190+
uses: actions/checkout@v6.0.0
191191
with:
192192
fetch-depth: 0
193193
persist-credentials: false
@@ -215,7 +215,7 @@ jobs:
215215
echo "result=${{ format('@{0}-{1}-{2}.tgz', github.repository_owner, github.event.repository.name, needs.preflight.outputs.version) }}" >>$GITHUB_OUTPUT
216216
- id: checkout
217217
name: Checkout ${{ env.REF_NAME }}
218-
uses: actions/checkout@v5.0.1
218+
uses: actions/checkout@v6.0.0
219219
with:
220220
fetch-depth: 0
221221
persist-credentials: false

.github/workflows/dependabot-dedupe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
4747
- id: checkout
4848
name: Checkout ${{ github.head_ref }}
49-
uses: actions/checkout@v5.0.1
49+
uses: actions/checkout@v6.0.0
5050
with:
5151
persist-credentials: false
5252
ref: ${{ github.head_ref }}

.github/workflows/infrastructure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
5252
- id: checkout
5353
name: Checkout ${{ github.ref_name }}@${{ github.sha }}
54-
uses: actions/checkout@v5.0.1
54+
uses: actions/checkout@v6.0.0
5555
with:
5656
persist-credentials: false
5757
ref: ${{ github.sha }}

.github/workflows/integrity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- id: checkout
4141
name: Checkout ${{ github.head_ref || github.ref_name }}
42-
uses: actions/checkout@v5.0.1
42+
uses: actions/checkout@v6.0.0
4343
with:
4444
persist-credentials: false
4545
ref: ${{ github.head_ref || github.ref }}

.github/workflows/release-chore.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
exit 1
5555
- id: checkout
5656
name: Checkout ${{ github.ref_name }}
57-
uses: actions/checkout@v5.0.1
57+
uses: actions/checkout@v6.0.0
5858
with:
5959
persist-credentials: false
6060
ref: ${{ github.ref }}
@@ -118,7 +118,7 @@ jobs:
118118
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
119119
- id: checkout
120120
name: Checkout ${{ github.ref_name }}
121-
uses: actions/checkout@v5.0.1
121+
uses: actions/checkout@v6.0.0
122122
with:
123123
ref: ${{ github.ref }}
124124
token: ${{ steps.bot-token.outputs.token }}
@@ -141,7 +141,7 @@ jobs:
141141
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
142142
- id: checkout
143143
name: Checkout ${{ needs.preflight.outputs.branch }}
144-
uses: actions/checkout@v5.0.1
144+
uses: actions/checkout@v6.0.0
145145
with:
146146
fetch-depth: 0
147147
persist-credentials: false
@@ -196,7 +196,7 @@ jobs:
196196
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
197197
- id: checkout
198198
name: Checkout ${{ needs.preflight.outputs.branch }}
199-
uses: actions/checkout@v5.0.1
199+
uses: actions/checkout@v6.0.0
200200
with:
201201
persist-credentials: false
202202
ref: ${{ needs.preflight.outputs.branch }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
uses: hmarr/[email protected]
6262
- id: checkout
6363
name: Checkout ${{ env.REF_NAME }}
64-
uses: actions/checkout@v5.0.1
64+
uses: actions/checkout@v6.0.0
6565
with:
6666
ref: ${{ env.REF }}
6767
- id: version
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- id: checkout
9999
name: Checkout ${{ env.REF_NAME }}
100-
uses: actions/checkout@v5.0.1
100+
uses: actions/checkout@v6.0.0
101101
with:
102102
fetch-depth: 0
103103
persist-credentials: true

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: hmarr/[email protected]
3333
- id: checkout
3434
name: Checkout ${{ github.head_ref || github.ref_name }}
35-
uses: actions/checkout@v5.0.1
35+
uses: actions/checkout@v6.0.0
3636
with:
3737
persist-credentials: false
3838
ref: ${{ github.head_ref || github.ref }}

0 commit comments

Comments
 (0)