Skip to content

Commit

Permalink
add package lock for project
Browse files Browse the repository at this point in the history
  • Loading branch information
eivinhb committed Nov 9, 2023
1 parent eed8e1e commit 6083c1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
cache: true
- name: Print openssl version
run: |
openssl version
Expand All @@ -27,7 +26,7 @@ jobs:
run: |
openssl aes-256-cbc -salt -pbkdf2 -k "$SIGNINGKEY_ENC_PASSWORD" -in signingkey.snk.enc -out signingkey.snk -d
- name: Install dependencies
run: dotnet restore
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.x
cache: true
- name: Print openssl version
run: |
openssl version
Expand All @@ -28,7 +27,7 @@ jobs:
run: |
openssl aes-256-cbc -salt -pbkdf2 -k "$SIGNINGKEY_ENC_PASSWORD" -in signingkey.snk.enc -out signingkey.snk -d
- name: Install dependencies
run: dotnet restore
run: dotnet restore --locked-mode
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
Expand Down

0 comments on commit 6083c1c

Please sign in to comment.