From 84251ad08ae7ca2d95880c2ec823701cdb34837a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Th=C3=B6mmes?= Date: Tue, 30 Jul 2024 17:10:19 +0200 Subject: [PATCH] Some fixes from manual tests --- .github/dependabot.yml | 7 +++++++ .github/release-drafter.yml | 2 +- README.md | 6 ++++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 65da023..931e3cb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,13 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + - package-ecosystem: "docker" + directory: "/" + labels: + - "dependencies" + open-pull-requests-limit: 10 + schedule: + interval: "daily" - package-ecosystem: "github-actions" directory: "/" labels: diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index d01e7a8..53a41fe 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -51,6 +51,6 @@ autolabeler: - label: "maintenance" files: - ".github/**/*" - - ".ko.yaml" + - "Dockerfile" - "go.mod" - "go.sum" diff --git a/README.md b/README.md index abe5b6f..274f9bf 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ jobs: uses: actions/checkout@v4 - name: Deploy the app uses: digitalocean/app_action/deploy@main + with: + token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }} ``` ### Deploy an app with a prebuilt image @@ -111,14 +113,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - name: Log in to the Container registry - uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + uses: docker/login-action@v3.3.0 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image id: push - uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + uses: docker/build-push-action@v6.5.0 with: context: . push: true