Skip to content

Commit ef5e36d

Browse files
Bump actions/checkout from 2 to 3 (PowerShell#17828)
1 parent 3b36d01 commit ef5e36d

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
body: backport_start_body
4040
});
4141
- name: Checkout repo
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343
with:
4444
fetch-depth: 0
4545
- name: Run backport

.github/workflows/codeql-analysis.yml

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

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434
with:
3535
fetch-depth: '0'
3636

.github/workflows/daily.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
if: github.repository == 'PowerShell/PowerShell'
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
- name: Sync tags
2929
run: |
3030
git fetch --prune --unshallow --tags
@@ -63,7 +63,7 @@ jobs:
6363
if: github.repository == 'PowerShell/PowerShell'
6464
steps:
6565
- name: Checkout
66-
uses: actions/checkout@v2
66+
uses: actions/checkout@v3
6767
- name: Update Notices file
6868
run: |
6969
Invoke-WebRequest -Uri https://aka.ms/pwsh-daily-tpn -OutFile ./ThirdPartyNotices.txt
@@ -105,7 +105,7 @@ jobs:
105105
CGMANIFEST_PATH: ''
106106
steps:
107107
- name: Checkout
108-
uses: actions/checkout@v2
108+
uses: actions/checkout@v3
109109
- name: Sync tags
110110
run: |
111111
git fetch --prune --unshallow --tags

.github/workflows/exp-json.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: Update experimental features json
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
fetch-depth: '0'
3535
- name: Create experimental features file
@@ -77,7 +77,7 @@ jobs:
7777
needs: create-expjson
7878
steps:
7979
- name: Checkout
80-
uses: actions/checkout@v2
80+
uses: actions/checkout@v3
8181
with:
8282
fetch-depth: '0'
8383
- name: Download artifacts

.github/workflows/markdownLink.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
markdown-link-check:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@master
12+
- uses: actions/checkout@v3
1313
- uses: gaurav-nelson/github-action-markdown-link-check@v1
1414
with:
1515
use-quiet-mode: 'yes'

.github/workflows/markdownLinkDaily.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'PowerShell/PowerShell'
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@master
18+
uses: actions/checkout@v3
1919
- name: Check Links
2020
uses: gaurav-nelson/github-action-markdown-link-check@v1
2121
with:

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout the latest code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616
with:
1717
fetch-depth: 0
1818
- name: Post rebase started comment to pull request

0 commit comments

Comments
 (0)