From 9847d1e84cce0e174c608c76aed09d87cb0be778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Fri, 16 Feb 2024 10:44:12 +0100 Subject: [PATCH] No need for the Dockerfile anymore We now run go version updates through the go-version action. --- .github/dependabot.yml | 7 ------- Dockerfile | 5 ----- 2 files changed, 12 deletions(-) delete mode 100644 Dockerfile diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1aff100..bafbf84 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,13 +8,6 @@ updates: timezone: Europe/Copenhagen reviewers: - arnested - - package-ecosystem: docker - directory: / - schedule: - interval: daily - timezone: Europe/Copenhagen - reviewers: - - arnested - package-ecosystem: github-actions directory: / schedule: diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c51e5df..0000000 --- a/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM golang:1.22.0 - -# The purpose of this Dockerfile is just to "trick" Dependabot into -# creating a pull request when a new version of Go is released. This -# way we can create a release and build it with the new Go version.