From 4d52b31fca37a6c1b37580cb4c77f9f42ca733d9 Mon Sep 17 00:00:00 2001 From: davops Date: Thu, 6 Nov 2025 16:02:37 -0500 Subject: [PATCH] ci: update github actions versions --- .github/dependabot.yml | 12 ++++++++++++ .github/workflows/sample-app-docker-build.yml | 6 +++--- 2 files changed, 15 insertions(+), 3 deletions(-) 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