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 description: Go version to install
type: string type: string
required: false required: false
default: '1.22' default: '1.23'
runs: runs:
using: composite using: composite
steps: steps:

View File

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

6
flake.lock generated
View File

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

View File

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