Skip to content

Commit 945d488

Browse files
Bump actions/checkout from 4.3.0 to 6.0.2
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.3.0 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.3.0...de0fac2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f082196 commit 945d488

13 files changed

Lines changed: 14 additions & 14 deletions

.github/workflows/blocked-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Blocked Issue Labeler
1+
name: Blocked Issue Labeler
22

33
on:
44
issues:
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repo
18-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
1919
- name: Add blocked label if issue is blocked
2020
run: |
2121
body=$BODY

.github/workflows/branch-hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
needs: [get-version]
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
3232
with:
3333
ref: ${{ github.head_ref }}
3434
- name: Increment Version

.github/workflows/branch-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
needs: [ publish-to-nuget ]
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
42+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
4343
- name: Create Pull Request
4444
env:
4545
GH_TOKEN: ${{ secrets.CREATE_PR_TOKEN }}

.github/workflows/completed-feature-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repo
14-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
14+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
1515
- name: Extract Issue Number
1616
env:
1717
GITHUB_PULL_REQUEST_HEAD_REF: ${{ github.event.pull_request.head.ref }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
# If you do not check out your code, Copilot will do this for you.
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
22+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
2323
with:
2424
ref: ${{ inputs.checkout-ref }}
2525
- name: Setup .NET Core

.github/workflows/draft-new-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: "Draft a new release"
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
22+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
2323
- name: Create release branch
2424
run: git checkout -b release/${{ github.event.inputs.major_version }}.${{ github.event.inputs.minor_version }}.${{ github.event.inputs.patch_version }}.${{ github.run_number }}
2525

.github/workflows/in-progress-feature-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repo
13-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
13+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
1414
- name: Extract Issue Number
1515
shell: bash
1616
run: echo "##[set-output name=issue;]$(echo ${GITHUB_REF#refs/heads/} | sed 's|[^0-9]||g')"

.github/workflows/label-configurer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
14+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
1515
- name: Run Labeler
1616
uses: crazy-max/ghaction-github-labeler@24d110aa46a59976b8a7f35518cb7f14f434c916 # v5
1717
with:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
java-version: 17
3434
distribution: 'zulu'
35-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
35+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v4
3636
with:
3737
fetch-depth: 0 # This disables shallow clones. This allows SonarQube to access the history of the project to perform analysis.
3838
- name: Cache SonarQube Cloud packages

.github/workflows/step-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: |
1919
echo "Branch: ${{ inputs.checkout-ref }}"
2020
- name: Checkout
21-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v5
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v5
2222
with:
2323
ref: ${{ inputs.checkout-ref }}
2424
- name: Setup .NET Core

0 commit comments

Comments
 (0)