Skip to content

Commit 8b02e3a

Browse files
ci(deps): Bump actions/checkout from 3.3.0 to 3.4.0 (#42)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7c32924 commit 8b02e3a

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

.github/workflows/approve-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
skip-commit-verification: true
3737
- id: checkout
3838
name: Checkout ${{ github.head_ref }}
39-
uses: actions/checkout@v3.3.0
39+
uses: actions/checkout@v3.4.0
4040
with:
4141
persist-credentials: false
4242
ref: ${{ github.head_ref }}

.github/workflows/ci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
uses: hmarr/[email protected]
5959
- id: checkout
6060
name: Checkout ${{ env.REF }}
61-
uses: actions/checkout@v3.3.0
61+
uses: actions/checkout@v3.4.0
6262
with:
6363
ref: ${{ env.REF }}
6464
- id: node
@@ -89,7 +89,7 @@ jobs:
8989
steps:
9090
- id: checkout
9191
name: Checkout ${{ env.REF }}
92-
uses: actions/checkout@v3.3.0
92+
uses: actions/checkout@v3.4.0
9393
with:
9494
fetch-depth: 0
9595
ref: ${{ env.REF }}
@@ -118,7 +118,7 @@ jobs:
118118
steps:
119119
- id: checkout
120120
name: Checkout ${{ env.REF }}
121-
uses: actions/checkout@v3.3.0
121+
uses: actions/checkout@v3.4.0
122122
with:
123123
fetch-depth: 0
124124
ref: ${{ env.REF }}
@@ -139,7 +139,7 @@ jobs:
139139
steps:
140140
- id: checkout
141141
name: Checkout ${{ env.REF }}
142-
uses: actions/checkout@v3.3.0
142+
uses: actions/checkout@v3.4.0
143143
with:
144144
ref: ${{ env.REF }}
145145
- id: node
@@ -164,7 +164,7 @@ jobs:
164164
steps:
165165
- id: checkout
166166
name: Checkout ${{ env.REF }}
167-
uses: actions/checkout@v3.3.0
167+
uses: actions/checkout@v3.4.0
168168
with:
169169
ref: ${{ env.REF }}
170170
- id: node
@@ -192,7 +192,7 @@ jobs:
192192
steps:
193193
- id: checkout
194194
name: Checkout ${{ env.REF }}
195-
uses: actions/checkout@v3.3.0
195+
uses: actions/checkout@v3.4.0
196196
with:
197197
ref: ${{ env.REF }}
198198
- id: node
@@ -227,7 +227,7 @@ jobs:
227227
steps:
228228
- id: checkout
229229
name: Checkout ${{ env.REF }}
230-
uses: actions/checkout@v3.3.0
230+
uses: actions/checkout@v3.4.0
231231
with:
232232
ref: ${{ env.REF }}
233233
- id: node
@@ -274,7 +274,7 @@ jobs:
274274
steps:
275275
- id: checkout
276276
name: Checkout ${{ env.REF }}
277-
uses: actions/checkout@v3.3.0
277+
uses: actions/checkout@v3.4.0
278278
with:
279279
ref: ${{ env.REF }}
280280
- id: node
@@ -321,7 +321,7 @@ jobs:
321321
steps:
322322
- id: checkout
323323
name: Checkout ${{ env.REF }}
324-
uses: actions/checkout@v3.3.0
324+
uses: actions/checkout@v3.4.0
325325
with:
326326
ref: ${{ env.REF }}
327327
- id: node

.github/workflows/dependabot-auto.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
skip-commit-verification: true
4040
- id: checkout
4141
name: Checkout ${{ github.head_ref }}
42-
uses: actions/checkout@v3.3.0
42+
uses: actions/checkout@v3.4.0
4343
with:
4444
persist-credentials: ${{ steps.metadata.outputs.package-ecosystem == 'npm_and_yarn' }}
4545
ref: ${{ github.head_ref }}

.github/workflows/integrity.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- id: checkout
4747
name: Checkout ${{ env.REF }}
48-
uses: actions/checkout@v3.3.0
48+
uses: actions/checkout@v3.4.0
4949
with:
5050
persist-credentials: false
5151
ref: ${{ env.REF }}

.github/workflows/label-linked-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- id: checkout
3535
name: Checkout main
36-
uses: actions/checkout@v3.3.0
36+
uses: actions/checkout@v3.4.0
3737
with:
3838
persist-credentials: false
3939
ref: main

.github/workflows/labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- id: checkout
3030
name: Checkout ${{ github.ref_name }}
31-
uses: actions/checkout@v3.3.0
31+
uses: actions/checkout@v3.4.0
3232
with:
3333
ref: ${{ github.ref }}
3434
- id: sync

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: hmarr/[email protected]
4242
- id: checkout
4343
name: Checkout ${{ env.TAG }}
44-
uses: actions/checkout@v3.3.0
44+
uses: actions/checkout@v3.4.0
4545
with:
4646
ref: ${{ format('refs/tags/{0}', env.TAG) }}
4747
- id: version
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- id: checkout
6767
name: Checkout ${{ env.TAG }}
68-
uses: actions/checkout@v3.3.0
68+
uses: actions/checkout@v3.4.0
6969
with:
7070
ref: ${{ format('refs/tags/{0}', env.TAG) }}
7171
- id: npmrc-cleanup
@@ -98,7 +98,7 @@ jobs:
9898
steps:
9999
- id: checkout
100100
name: Checkout ${{ env.TAG }}
101-
uses: actions/checkout@v3.3.0
101+
uses: actions/checkout@v3.4.0
102102
with:
103103
ref: ${{ format('refs/tags/{0}', env.TAG) }}
104104
- id: npmrc-cleanup

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: hmarr/[email protected]
4848
- id: checkout
4949
name: Checkout ${{ env.REF }}
50-
uses: actions/checkout@v3.3.0
50+
uses: actions/checkout@v3.4.0
5151
with:
5252
ref: ${{ env.REF }}
5353
- id: version
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- id: checkout
8484
name: Checkout ${{ github.event.inputs.sha || 'event.pull_request.merge_commit_sha' }}
85-
uses: actions/checkout@v3.3.0
85+
uses: actions/checkout@v3.4.0
8686
with:
8787
fetch-depth: 0
8888
ref: ${{ github.event.inputs.sha || github.event.pull_request.merge_commit_sha }}

0 commit comments

Comments
 (0)