Skip to content

Commit

Permalink
feat: update tools and golang versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiola committed Jun 26, 2024
1 parent 2dc8f74 commit df36949
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "Go",
"image": "golang:1.22.3",
"image": "golang:1.22.4",
"containerUser": "root",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/go:1": {"version": "none", "golangciLintVersion": "1.59.0"}
"ghcr.io/devcontainers/features/go:1": {"version": "none", "golangciLintVersion": "1.59.1"}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- examples/**

env:
GORELEASER_VERSION: v2.0.0
GORELEASER_VERSION: v2.0.1
jobs:
lint:
name: Lint Code
Expand Down Expand Up @@ -52,9 +52,6 @@ jobs:
- ubuntu-latest
- macos-latest
k8s_version:
- "1.24"
- "1.25"
- "1.26"
- "1.27"
- "1.28"
- "1.29"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
- cron: 0 5 * * 1 # Run every monday at 5 UTC

env:
GORELEASER_VERSION: v2.0.0
GORELEASER_VERSION: v2.0.1

jobs:
codeql:
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.22.3
1.22.4
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ repos:
name: Trims trailing whitespace
args: [--markdown-linebreak-ext=md] # add exception for markdown linebreaks
- repo: https://github.com/gitleaks/gitleaks
rev: v8.18.3
rev: v8.18.4
hooks:
- id: gitleaks
name: Protect and discover secrets using Gitleaks
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

- fixed `delete-before-apply` annotation behaviour to call namespace-scoped API
- update to go 1.22.3
- update to go 1.22.4

## [1.2.3] - 2023-08-24

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ endif
# Set here the name of the package you want to build
CMDNAME:= mlp
BUILD_PATH:= ./cmd/$(CMDNAME)
CONFORMANCE_TEST_PATH:= $(PROJECT_DIR)/internal/e2e
CONFORMANCE_TEST_PATH:= $(PROJECT_DIR)/tests/e2e
IS_LIBRARY:=

# enable modules
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mia-platform/mlp

go 1.22.3
go 1.22.4

require (
github.com/MakeNowJust/heredoc/v2 v2.0.1
Expand Down
2 changes: 1 addition & 1 deletion tools/GOLANGCI_LINT_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.59.0
v1.59.1
2 changes: 1 addition & 1 deletion tools/GORELEASER_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.0.0
v2.0.1

0 comments on commit df36949

Please sign in to comment.