diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9f31712..d7c3ac8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,8 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + allow: + - dependency-type: "all" target-branch: main - package-ecosystem: github-actions directory: / diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 0061a67..ec31406 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.20.x + go-version: 1.22.x - name: Check out code into the Go module directory uses: actions/checkout@v4 diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml index cd2284c..e6cb93a 100644 --- a/.github/workflows/misspell.yml +++ b/.github/workflows/misspell.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: 1.20.x + go-version: 1.22.x - name: Check out code into the Go module directory uses: actions/checkout@v4 diff --git a/Dockerfile b/Dockerfile index 3f4ede0..aae2378 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -FROM golang:1.20 as bootstrap +FROM golang:1.22 as bootstrap WORKDIR /go/src/github.com/homeport/secrets-manager-resource COPY . .