From a95a3bc7f3a22e3c03e35828d89ce76a7579c40e Mon Sep 17 00:00:00 2001 From: Toni Tauro Date: Tue, 6 Jul 2021 11:21:56 +0200 Subject: [PATCH] ci: activate dependabot and fix GITHUB_TOKEN Signed-off-by: Toni Tauro --- .github/dependabot.yml | 18 ++++++++++++++++++ .github/workflows/release-container-image.yaml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..65bc053 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + # Update Dockerfile + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "feat: " + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + commit-message: + prefix: "chore(ci): " + open-pull-requests-limit: 10 diff --git a/.github/workflows/release-container-image.yaml b/.github/workflows/release-container-image.yaml index f3baacc..9b5c216 100644 --- a/.github/workflows/release-container-image.yaml +++ b/.github/workflows/release-container-image.yaml @@ -55,7 +55,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.PAT }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push id: docker_build