Skip to content
This repository was archived by the owner on Feb 5, 2024. It is now read-only.

Commit 2d98987

Browse files
authored
Merge pull request #76 from akunzai/improve-workflows
Improve workflows
2 parents 99a3927 + 085e723 commit 2d98987

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-reportgenerator-globaltool": {
6-
"version": "5.1.9",
6+
"version": "5.1.10",
77
"commands": [
88
"reportgenerator"
99
]

.github/workflows/cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ on:
88
tags:
99
- "*"
1010

11+
permissions: read-all
12+
1113
jobs:
1214
deploy:
1315
runs-on: ubuntu-latest
1416
steps:
15-
- uses: actions/checkout@v3
17+
- name: Checkout repository
18+
uses: actions/checkout@v3
1619
- name: Set up .NET SDK
1720
uses: actions/setup-dotnet@v3
1821
with:

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
branches:
99
- main
1010

11+
permissions: read-all
12+
1113
jobs:
1214
build:
1315
strategy:
@@ -17,7 +19,8 @@ jobs:
1719
- windows-latest
1820
runs-on: ${{ matrix.os }}
1921
steps:
20-
- uses: actions/checkout@v3
22+
- name: Checkout repository
23+
uses: actions/checkout@v3
2124
with:
2225
fetch-depth: 10
2326
- name: Set up .NET SDK

0 commit comments

Comments
 (0)