Skip to content

Commit b2aa1e5

Browse files
Pin dependencies
1 parent 92914b2 commit b2aa1e5

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141

4242
steps:
4343
- name: Checkout the repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4545

4646
- name: Fetch all tags and branches
4747
run: git fetch --prune --unshallow
4848

4949
- name: Cache Tools
50-
uses: actions/cache@v4
50+
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
5151
with:
5252
path: tools
5353
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake', '.config/dotnet-tools.json') }}
@@ -58,7 +58,7 @@ jobs:
5858
run: sudo apt-get install -y libgit2-dev
5959

6060
- name: Setup required dotnet versions
61-
uses: actions/[email protected]
61+
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
6262
with:
6363
dotnet-version: |
6464
2.1.818
@@ -69,7 +69,7 @@ jobs:
6969
8.0.x
7070
7171
- name: Build project
72-
uses: cake-build/[email protected]
72+
uses: cake-build/cake-action@1223b6fa067ad192159f43b50cd4f953679b0934 # v2.0.0
7373
with:
7474
script-path: recipe.cake
7575
target: CI
@@ -78,15 +78,15 @@ jobs:
7878
cake-bootstrap: explicit
7979

8080
- name: Upload Issues-Report
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4
8282
with:
8383
if-no-files-found: warn
8484
name: ${{ matrix.os }} Issues
8585
path: BuildArtifacts/report.html
8686

8787
- name: Upload Packages
8888
if: runner.os == 'Windows'
89-
uses: actions/upload-artifact@v4
89+
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4
9090
with:
9191
if-no-files-found: warn
9292
name: package

.github/workflows/release-notes.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@ jobs:
1111

1212
steps:
1313
- name: Checkout the requested branch
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
1515
- name: Fetch all tags and branches
1616
run: git fetch --prune --unshallow
1717
- name: Cache Tools
18-
uses: actions/cache@v4
18+
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4
1919
with:
2020
path: tools
2121
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake', '.config/dotnet-tools.json') }}
2222
- name: Set up git version
2323
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
24-
uses: gittools/actions/gitversion/[email protected]
24+
uses: gittools/actions/gitversion/setup@a91d2e8b65fa493e04e072c115068cbd4a6f03f8 # v0.9.9
2525
with:
2626
versionSpec: "5.x"
2727
- name: Run git version
2828
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
2929
id: gitversion
30-
uses: gittools/actions/gitversion/[email protected]
30+
uses: gittools/actions/gitversion/execute@a91d2e8b65fa493e04e072c115068cbd4a6f03f8 # v0.9.9
3131
- name: Create release branch ${{ github.event.inputs.version }}
3232
if: ${{ steps.gitversion.outputs.majorMinorPatch }}
3333
run: git switch -c release/${{ steps.gitversion.outputs.majorMinorPatch }}
3434
- name: Push new branch
3535
if: ${{ steps.gitversion.outputs.majorMinorPatch }}
36-
uses: ad-m/[email protected]
36+
uses: ad-m/github-push-action@40bf560936a8022e68a3c00e7d2abefaf01305a6 # v0.6.0
3737
with:
3838
branch: "release/${{ steps.gitversion.outputs.majorMinorPatch }}"
3939
github_token: ${{ secrets.GH_TOKEN }}

0 commit comments

Comments
 (0)