Skip to content

Commit

Permalink
Update Go Dockerfile version thresholds
Browse files Browse the repository at this point in the history
Update Dockerfile thresholds so that Dependabot will offer
the expected version updates whenever a new Go releae occurs
for the 1.20 series (stable, unstable) or the 1.19 series
(oldstable).

I missed this as part of the v0.7.9 release prep work.

refs GH-831
  • Loading branch information
atc0005 committed Feb 11, 2023
1 parent ebe47fe commit 716923f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ updates:
- dependency-name: "golang"
versions:
# Greater than or equal to stable container image series
- ">= 1.19"
- ">= 1.20"

# Less than oldstable series
- "< 1.18"
- "< 1.19"
assignees:
- "atc0005"
labels:
Expand Down Expand Up @@ -107,8 +107,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/stable/combined"
Expand All @@ -130,8 +130,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/stable/build/alpine-x64"
Expand All @@ -153,8 +153,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/stable/build/alpine-x86"
Expand All @@ -176,8 +176,8 @@ updates:
ignore:
- dependency-name: "i386/golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/stable/build/debian"
Expand All @@ -199,8 +199,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/stable/build/mirror"
Expand All @@ -222,8 +222,8 @@ updates:
ignore:
- dependency-name: "golang"
versions:
- ">= 1.20"
- "< 1.19"
- ">= 1.21"
- "< 1.20"

- package-ecosystem: docker
directory: "/unstable"
Expand Down

0 comments on commit 716923f

Please # to comment.