From 4c85c6ccdf90b4e04f576df1d8f02b75f6e46bbc Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 19 Aug 2022 14:03:32 +0200 Subject: [PATCH] chore: upgrade from Golang 1.18 to 1.19, golangci-lint from 1.46 to 1.48 --- .github/workflows/continuous_integration.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index f3aefa78..2e168fe6 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -19,7 +19,7 @@ jobs: - name: Run linters uses: golangci/golangci-lint-action@v2 with: - version: v1.46 + version: v1.48 tests: needs: diff --git a/Makefile b/Makefile index 602945d5..e0507952 100644 --- a/Makefile +++ b/Makefile @@ -5,14 +5,14 @@ help: ## Show the help .PHONY: it it: build build-tests ## Initialize the development environment -GOLANG_VERSION=1.18 +GOLANG_VERSION=1.19 DOCKER_REPOSITORY=gotenberg GOTENBERG_VERSION=snapshot GOTENBERG_USER_GID=1001 GOTENBERG_USER_UID=1001 NOTO_COLOR_EMOJI_VERSION=v2.034 # See https://github.com/googlefonts/noto-emoji/releases. PDFTK_VERSION=v3.3.2 # See https://gitlab.com/pdftk-java/pdftk/-/releases - Binary package. -GOLANGCI_LINT_VERSION=v1.46.2 # See https://github.com/golangci/golangci-lint/releases. +GOLANGCI_LINT_VERSION=v1.48.0 # See https://github.com/golangci/golangci-lint/releases. .PHONY: build build: ## Build the Gotenberg's Docker image