diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e275116..9eced6f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 diff --git a/.github/workflows/sample-app-docker-build.yml b/.github/workflows/sample-app-docker-build.yml index 2964228..43e223d 100644 --- a/.github/workflows/sample-app-docker-build.yml +++ b/.github/workflows/sample-app-docker-build.yml @@ -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