Skip to content

Commit ffe1f7e

Browse files
authored
Merge pull request #483 from Afterlife-Guide/release/0.4.7.28
Release version 0.4.7.28
2 parents 4570303 + 986ebc8 commit ffe1f7e

19 files changed

Lines changed: 34 additions & 28 deletions

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ updates:
1818
- "Verify.Xunit"
1919
- "xunit"
2020
- "xunit.*"
21+
microsoft-testing:
22+
patterns:
23+
- "Microsoft.Testing.*"
2124

2225
- package-ecosystem: "github-actions"
2326
directory: "/" # Location of package manifests

.github/workflows/add-hotfix-metadata.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
needs: [get-version]
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
23+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
2424
with:
2525
ref: ${{ github.head_ref }}
2626
- name: Increment Version
2727
id: increment_version
2828
run: |
2929
echo "patch_version=$(($(cat semver.json | jq -r '.patch')+1))" > $GITHUB_OUTPUT
3030
- name: Store New Version
31-
uses: Afterlife-Guide/SemVer.Action@aca48a98ffa98850a05ec258fe1bdf901dd235ae
31+
uses: Afterlife-Guide/SemVer.Action@2790e24cfc0dc25437d4de95ce0d1eba4f710bce
3232
with:
3333
path: semver.json
3434
major-version: ${{ needs.get-version.outputs.major }}

.github/workflows/blocked-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout repo
24-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
24+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
2525
- name: Add blocked label if issue is blocked
2626
env:
2727
BODY: ${{ github.event.issue.body }}

.github/workflows/branch-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
needs: [push-package]
4242
runs-on: ubuntu-latest
4343
steps:
44-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
44+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
4545
- name: Create Pull Request
4646
env:
4747
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
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repo
17-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
17+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
1818
- name: Extract Issue Number
1919
shell: bash
2020
env:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd
22+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
2323
- name: Setup .NET Core
24-
uses: actions/setup-dotnet@c2fa09f4bde5ebb9d1777cf28262a3eb3db3ced7
24+
uses: actions/setup-dotnet@9a946fdbd5fb07b82b2f5a4466058b876ab72bb2
2525
with:
2626
dotnet-version: |
2727
10.0.x

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: "Draft a new release"
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
25+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
2626
with:
2727
token: ${{ secrets.CREATE_PR_TOKEN }}
2828
fetch-depth: 0
@@ -35,7 +35,7 @@ jobs:
3535
run: git checkout -b release/$MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION.$RUN_NUMBER
3636

3737
- name: Update Version Number
38-
uses: Afterlife-Guide/SemVer.Action@aca48a98ffa98850a05ec258fe1bdf901dd235ae
38+
uses: Afterlife-Guide/SemVer.Action@2790e24cfc0dc25437d4de95ce0d1eba4f710bce
3939
with:
4040
path: semver.json
4141
major-version: ${{ github.event.inputs.major_version }}

.github/workflows/gitstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: gitStream workflow automation
3939
steps:
4040
- name: Evaluate Rules
41-
uses: linear-b/gitstream-github-action@d1b4cbcc7eb688aa48dd2fd3f47ef69ad4cff44e
41+
uses: linear-b/gitstream-github-action@a6d234ae0afb7d31313372d47316f98576a3759f
4242
id: rules-engine
4343
with:
4444
full_repository: ${{ github.event.inputs.full_repository }}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
16+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
1717
- name: Extract Issue Number
1818
shell: bash
1919
run: echo "issue=$(echo ${GITHUB_REF#refs/heads/} | sed 's|[^0-9]||g')" >> $GITHUB_OUTPUT

.github/workflows/label-configurer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
20+
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
2121
- name: Run Labeler
2222
uses: crazy-max/ghaction-github-labeler@548a7c3603594ec17c819e1239f281a3b801ab4d
2323
with:

0 commit comments

Comments
 (0)