Skip to content

Commit f383c83

Browse files
committed
merge
2 parents 4a15617 + 5bc87a0 commit f383c83

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,17 @@ defaults:
1010
run:
1111
working-directory: ./libraries
1212

13+
permissions:
14+
contents: read
15+
1316
jobs:
1417
build:
1518
runs-on: ubuntu-latest
1619

1720
steps:
1821
- uses: actions/checkout@v3
1922
- name: Setup .NET 6.0 & 8.0
20-
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
23+
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # 4.0.0
2124
with:
2225
dotnet-version: |
2326
6.0.405
@@ -29,12 +32,12 @@ jobs:
2932
- name: Test & Code Coverage
3033
run: dotnet test --collect:"XPlat Code Coverage" --results-directory ./codecov --verbosity normal
3134
- name: Codecov
32-
uses: codecov/codecov-action@81cd2dc8148241f03f5839d295e000b8f761e378 # 3.1.0
33-
continue-on-error: true # prevent build fail when codecov service is down (very frequent)
35+
uses: codecov/codecov-action@5ecb98a3c6b747ed38dc09f787459979aebb39be # 4.3.1
36+
env:
37+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3438
with:
35-
token: ${{ secrets.CODECOV_TOKEN }}
3639
flags: unittests
37-
fail_ci_if_error: true
40+
fail_ci_if_error: false
3841
name: codecov-lambda-powertools-dotnet
3942
verbose: true
4043
directory: ./libraries/codecov

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ nav:
1111
- Roadmap: roadmap.md
1212
- API Reference: api/" target="_blank
1313
- We Made This (Community): we_made_this.md
14+
- Workshop 🆕: https://s12d.com/powertools-for-aws-lambda-workshop" target="_blank
1415
- Core utilities:
1516
- core/logging.md
1617
- core/metrics.md

0 commit comments

Comments
 (0)