Skip to content

Commit

Permalink
Merge pull request #533 from malayparida2000/go_1_24_workflow
Browse files Browse the repository at this point in the history
action: add Go 1.24 to docker build & golangci-lint workflows
  • Loading branch information
openshift-merge-bot[bot] authored Feb 18, 2025
2 parents e7340af + c3484ea commit 22d112c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ["1.23"]
go: ["1.23", "1.24"]
steps:
- uses: actions/setup-go@v5
with:
Expand All @@ -34,7 +34,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ["1.23"]
go: ["1.23", "1.24"]
steps:
- uses: actions/setup-go@v5
with:
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ["1.23"]
go: ["1.23", "1.24"]
steps:
- uses: actions/setup-go@v5
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@ on:
jobs:
golangci-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: ["1.23", "1.24"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-go@v5
with:
go-version-file: go.mod
go-version: ${{ matrix.go }}

- uses: golangci/golangci-lint-action@v6
with:
Expand Down

0 comments on commit 22d112c

Please sign in to comment.