From e72c4cdf2ca4f32028bc57dc3bc5a28004f77c53 Mon Sep 17 00:00:00 2001 From: benjaminbear <56151965+benjaminbear@users.noreply.github.com> Date: Fri, 14 Mar 2025 01:27:45 +0100 Subject: [PATCH 1/2] Create dependabot.yml --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..9c3dc5f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/dyndns" # Location of package manifests + schedule: + interval: "daily" + - package-ecosystem: "docker" + directory: "/deployment" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: ".github/workflows" + schedule: + interval: "daily" From d73de141a1cfb15f68b8d11d5667a356e6016839 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Mar 2025 00:48:00 +0000 Subject: [PATCH 2/2] Bump docker/login-action from 1 to 3 in /.github/workflows Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/containers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index 4749eee..7fe772f 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -38,7 +38,7 @@ jobs: - name: Login to DockerHub if: github.event_name != 'pull_request' - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }}