Skip to content

Commit e9ae762

Browse files
committed
Merge branch 'develop' of https://github.com/hjgraca/powertools-lambda-dotnet into fix(logging)-service-name-override
2 parents 947fe6f + a051ba2 commit e9ae762

File tree

5 files changed

+31
-6
lines changed

5 files changed

+31
-6
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
commit-message:
8+
prefix: chore
9+
include: scope
10+
11+
- package-ecosystem: docker
12+
directory: /docs
13+
commit-message:
14+
prefix: chore
15+
include: scope
16+
schedule:
17+
interval: daily

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@ name: Build .NET
22

33
on:
44
push:
5+
paths:
6+
- "libraries/**"
57
branches: [develop, main]
68
pull_request:
9+
paths:
10+
- "libraries/**"
711
branches: [develop, main]
812

913
defaults:

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ name: "CodeQL"
22

33
on:
44
push:
5+
paths:
6+
- "libraries/**"
57
branches: [ "develop", main ]
68
pull_request:
7-
# The branches below must be a subset of the branches above
9+
paths:
10+
- "libraries/**"
811
branches: [ "develop" ]
912
schedule:
1013
- cron: '42 8 * * 0'
@@ -29,14 +32,14 @@ jobs:
2932

3033
# Initializes the CodeQL tools for scanning.
3134
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 #v2
35+
uses: github/codeql-action/init@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 #v2
3336
with:
3437
languages: ${{ matrix.language }}
3538

3639
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3740
# If this step fails, then you should remove it and run the build manually (see below)
3841
- name: Autobuild
39-
uses: github/codeql-action/autobuild@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 #v2
42+
uses: github/codeql-action/autobuild@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 #v2
4043

4144
# ℹ️ Command-line programs to run using the OS shell.
4245
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -49,4 +52,4 @@ jobs:
4952
# ./location_of_script_within_repo/buildscript.sh
5053

5154
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@2ca79b6fa8d3ec278944088b4aa5f46912db5d63 #v2
55+
uses: github/codeql-action/analyze@ee117c905ab18f32fa0f66c2fe40ecc8013f3e04 #v2

.github/workflows/record_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
script: |
1717
const script = require('.github/scripts/save_pr_details.js')
1818
await script({github, context, core})
19-
- uses: actions/upload-artifact@v3
19+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
2020
with:
2121
name: pr
2222
path: pr.txt

docs/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
FROM squidfunk/mkdocs-material
1+
# v9.1.18
2+
FROM squidfunk/mkdocs-material@sha256:41942f7a2f5163aacd0e866e076d95db4f26550b97d76c1594c04250cbb580e9
23
RUN pip install mkdocs-git-revision-date-plugin

0 commit comments

Comments
 (0)