Skip to content

Commit 7824ea3

Browse files
dependabot[bot]SIRMARGIN
authored andcommitted
Bump actions/checkout from 4 to 5 (PowerShell#25853)
1 parent fc7269a commit 7824ea3

8 files changed

Lines changed: 30 additions & 30 deletions

File tree

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: 'Checkout Repository'
20-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121
- name: 'Dependency Review'
2222
uses: actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1

.github/workflows/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Check out the repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Verify PR has label starting with 'cl-'
2424
id: verify-labels

.github/workflows/linux-ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
source: ${{ steps.filter.outputs.source }}
5353
steps:
5454
- name: checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
persist-credentials: false
5858

@@ -69,7 +69,7 @@ jobs:
6969
if: ${{ needs.changes.outputs.source == 'true' }}
7070
steps:
7171
- name: checkout
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373
with:
7474
fetch-depth: 1000
7575

@@ -84,7 +84,7 @@ jobs:
8484
runs-on: ubuntu-latest
8585
steps:
8686
- name: checkout
87-
uses: actions/checkout@v4
87+
uses: actions/checkout@v5
8888
with:
8989
fetch-depth: 1000
9090
- name: Linux Unelevated CI
@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-latest
102102
steps:
103103
- name: checkout
104-
uses: actions/checkout@v4
104+
uses: actions/checkout@v5
105105
with:
106106
fetch-depth: 1000
107107
- name: Linux Elevated CI
@@ -118,7 +118,7 @@ jobs:
118118
runs-on: ubuntu-latest
119119
steps:
120120
- name: checkout
121-
uses: actions/checkout@v4
121+
uses: actions/checkout@v5
122122
with:
123123
fetch-depth: 1000
124124
- name: Linux Unelevated Others
@@ -135,7 +135,7 @@ jobs:
135135
runs-on: ubuntu-latest
136136
steps:
137137
- name: checkout
138-
uses: actions/checkout@v4
138+
uses: actions/checkout@v5
139139
with:
140140
fetch-depth: 1000
141141
- name: Linux Elevated Others
@@ -152,7 +152,7 @@ jobs:
152152
runs-on: ubuntu-latest
153153
steps:
154154
- name: checkout
155-
uses: actions/checkout@v4
155+
uses: actions/checkout@v5
156156
with:
157157
fetch-depth: 1000
158158
- name: Verify xUnit test results
@@ -179,7 +179,7 @@ jobs:
179179

180180
steps:
181181
- name: Checkout repository
182-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
182+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
183183
with:
184184
fetch-depth: '0'
185185

@@ -242,7 +242,7 @@ jobs:
242242
# runs-on: ubuntu-20.04
243243
# steps:
244244
# - name: checkout
245-
# uses: actions/checkout@v4
245+
# uses: actions/checkout@v5
246246
# with:
247247
# fetch-depth: 1000
248248
# - name: Verify xUnit test results

.github/workflows/macos-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
source: ${{ steps.filter.outputs.source }}
5353
steps:
5454
- name: checkout
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656

5757
- name: Change Detection
5858
id: filter
@@ -67,7 +67,7 @@ jobs:
6767
if: ${{ needs.changes.outputs.source == 'true' }}
6868
steps:
6969
- name: checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
fetch-depth: 1000
7373
- name: Build
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: macos-latest
8282
steps:
8383
- name: checkout
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@v5
8585
with:
8686
fetch-depth: 1000
8787
- name: macOS Unelevated CI
@@ -98,7 +98,7 @@ jobs:
9898
runs-on: macos-latest
9999
steps:
100100
- name: checkout
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v5
102102
with:
103103
fetch-depth: 1000
104104
- name: macOS Elevated CI
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: macos-latest
116116
steps:
117117
- name: checkout
118-
uses: actions/checkout@v4
118+
uses: actions/checkout@v5
119119
with:
120120
fetch-depth: 1000
121121
- name: macOS Unelevated Others
@@ -132,7 +132,7 @@ jobs:
132132
runs-on: macos-latest
133133
steps:
134134
- name: checkout
135-
uses: actions/checkout@v4
135+
uses: actions/checkout@v5
136136
with:
137137
fetch-depth: 1000
138138
- name: macOS Elevated Others
@@ -149,7 +149,7 @@ jobs:
149149
runs-on: ubuntu-latest
150150
steps:
151151
- name: checkout
152-
uses: actions/checkout@v4
152+
uses: actions/checkout@v5
153153
with:
154154
fetch-depth: 1000
155155
- name: Verify xUnit test results
@@ -163,7 +163,7 @@ jobs:
163163
- macos-latest
164164
steps:
165165
- name: checkout
166-
uses: actions/checkout@v4
166+
uses: actions/checkout@v5
167167
- name: Bootstrap packaging
168168
if: success() || failure()
169169
run: |-

.github/workflows/markdownLink.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository_owner == 'PowerShell'
1414

1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717
- uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # v1
1818
with:
1919
use-quiet-mode: 'yes'
@@ -27,7 +27,7 @@ jobs:
2727
statuses: write
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3131
with:
3232
# Full git history is needed to get a proper
3333
# list of changed files within `super-linter`

.github/workflows/markdownLinkDaily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: github.repository == 'PowerShell/PowerShell'
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2222
- name: Check Links
2323
uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # v1
2424
with:

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636
with:
3737
persist-credentials: false
3838

.github/workflows/windows-ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
source: ${{ steps.filter.outputs.source }}
5454
steps:
5555
- name: checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757

5858
- name: Change Detection
5959
id: filter
@@ -68,7 +68,7 @@ jobs:
6868
runs-on: windows-latest
6969
steps:
7070
- name: checkout
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
with:
7373
fetch-depth: 1000
7474
- name: Build
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: windows-latest
8383
steps:
8484
- name: checkout
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686
with:
8787
fetch-depth: 1000
8888
- name: Windows Unelevated CI
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: windows-latest
100100
steps:
101101
- name: checkout
102-
uses: actions/checkout@v4
102+
uses: actions/checkout@v5
103103
with:
104104
fetch-depth: 1000
105105
- name: Windows Elevated CI
@@ -116,7 +116,7 @@ jobs:
116116
runs-on: windows-latest
117117
steps:
118118
- name: checkout
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120
with:
121121
fetch-depth: 1000
122122
- name: Windows Unelevated Others
@@ -133,7 +133,7 @@ jobs:
133133
runs-on: windows-latest
134134
steps:
135135
- name: checkout
136-
uses: actions/checkout@v4
136+
uses: actions/checkout@v5
137137
with:
138138
fetch-depth: 1000
139139
- name: Windows Elevated Others
@@ -150,7 +150,7 @@ jobs:
150150
runs-on: windows-latest
151151
steps:
152152
- name: checkout
153-
uses: actions/checkout@v4
153+
uses: actions/checkout@v5
154154
with:
155155
fetch-depth: 1000
156156
- name: Verify xUnit test results

0 commit comments

Comments
 (0)