Skip to content

Commit 0382d28

Browse files
Bump actions/checkout from 4 to 5 (#815)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0d0384c commit 0382d28

11 files changed

+13
-13
lines changed

.github/workflows/Build AppControl Manager MSIX Package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if ($LASTEXITCODE -ne 0) { throw [System.InvalidOperationException]::New("Failed to install Microsoft.VCRedist: $LASTEXITCODE") }
9898
9999
- name: Check out the repository code
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101

102102
- name: Building And Packaging the AppControl Manager
103103
id: main_buildOp
@@ -1024,7 +1024,7 @@ jobs:
10241024
steps:
10251025

10261026
- name: Check out the repository code
1027-
uses: actions/checkout@v4
1027+
uses: actions/checkout@v5
10281028

10291029
- name: Updating The MSIXBundle Download Links and Version via Pull Request
10301030
shell: pwsh

.github/workflows/Build AppControl Manager for Store.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if ($LASTEXITCODE -ne 0) { throw [System.InvalidOperationException]::New("Failed to install Microsoft.VCRedist: $LASTEXITCODE") }
9898
9999
- name: Check out the repository code
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101

102102
- name: Building And Packaging the AppControl Manager
103103
id: main_buildOp

.github/workflows/Build Harden System Security for Store.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
if ($LASTEXITCODE -ne 0) { throw [System.InvalidOperationException]::New("Failed to install Microsoft.VCRedist: $LASTEXITCODE") }
9898
9999
- name: Check out the repository code
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101

102102
- name: Building And Packaging the Harden System Security
103103
id: main_buildOp

.github/workflows/CodeQL Advanced - Quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL

.github/workflows/Markdown Link Validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: windows-latest
1212
steps:
1313
- name: Check out the repository code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v5
1515

1616
- name: Validate the links
1717
shell: pwsh

.github/workflows/Repository And Package Scan on Virus Total.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: windows-latest
1818
steps:
1919
# Step to check out the repository
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
# Step to create ZIP of the repository
2323
- name: Create a zip file of the entire repository

.github/workflows/Sync to Azure DevOps.yaml

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

1616
steps:
1717
- name: Checkout GitHub repo
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
fetch-depth: 0 # This is necessary
2121

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
6161
steps:
6262
- name: Checkout repository
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464

6565
# Add any setup steps before running the `github/codeql-action/init` action.
6666
# This includes steps like installing compilers or runtimes (`actions/setup-node`

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# If you do not check out your code, Copilot will do this for you.
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Updating Winget
2929
shell: powershell
@@ -85,4 +85,4 @@ jobs:
8585
if ($LASTEXITCODE -ne 0) { throw [System.InvalidOperationException]::New("Failed to install Microsoft.VCRedist: $LASTEXITCODE") }
8686
8787
- name: Check out the repository code
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v5

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: 'Checkout repository'
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: 'Dependency Review'
3333
uses: actions/dependency-review-action@v4
3434
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.

0 commit comments

Comments
 (0)