build: update Go 1.22 to 1.23

This commit is contained in:
Vincent Bernat
2024-08-15 13:52:41 +02:00
parent 25946c279c
commit c8aff8bb4a
4 changed files with 6 additions and 6 deletions

View File

@@ -21,7 +21,7 @@ inputs:
description: Go version to install
type: string
required: false
default: '1.22'
default: '1.23'
runs:
using: composite
steps:

View File

@@ -5,7 +5,7 @@ stages:
run tests:
stage: tests
image: golang:1.22-alpine
image: golang:1.23-alpine
cache:
- key:
files:

6
flake.lock generated
View File

@@ -37,11 +37,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1722640603,
"narHash": "sha256-TcXjLVNd3VeH1qKPH335Tc4RbFDbZQX+d7rqnDUoRaY=",
"lastModified": 1723221148,
"narHash": "sha256-7pjpeQlZUNQ4eeVntytU3jkw9dFK3k1Htgk2iuXjaD8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "81610abc161d4021b29199aa464d6a1a521e0cc9",
"rev": "154bcb95ad51bc257c2ce4043a725de6ca700ef6",
"type": "github"
},
"original": {

View File

@@ -14,7 +14,7 @@
inherit system;
};
nodejs = pkgs.nodejs-18_x;
go = pkgs.go_1_22;
go = pkgs.go_1_23;
frontend = pkgs.buildNpmPackage.override { inherit nodejs; } {
name = "akvorado-frontend";
src = ./console/frontend;