Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,15 @@ updates:
interval: daily
time: "04:00"
rebase-strategy: disabled


- package-ecosystem: "github-actions"
open-pull-requests-limit: 5
directory: "/"
schedule:
interval: "weekly"
day: wednesday
time: "00:00"
timezone: America/Chicago
commit-message:
prefix: ci
6 changes: 3 additions & 3 deletions .github/workflows/sample-app-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:
version: [6, 7, 8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
- uses: actions/checkout@v5
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.version }}.x
- run: dotnet tool install -g Amazon.Lambda.Tools
- name: Build and package nuget
uses: cake-build/cake-action@v1
uses: cake-build/cake-action@v3
with:
cake-version: 1.3.0
- name: Build and package lambda
Expand Down