Skip to content

Commit 2704b85

Browse files
committed
feat: update Go to 1.23.3
See https://go.dev/doc/devel/release#go1.23.minor Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
1 parent 3750064 commit 2704b85

4 files changed

Lines changed: 19 additions & 9 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-10-17T13:05:59Z by kres 34e72ac.
3+
# Generated on 2024-11-11T14:23:10Z by kres b6443eb.
44

55
name: default
66
concurrency:
@@ -33,7 +33,7 @@ jobs:
3333
labels: ${{ steps.retrieve-pr-labels.outputs.result }}
3434
services:
3535
buildkitd:
36-
image: moby/buildkit:v0.16.0
36+
image: moby/buildkit:v0.17.1
3737
options: --privileged
3838
ports:
3939
- 1234:1234
@@ -129,7 +129,7 @@ jobs:
129129
- default
130130
services:
131131
buildkitd:
132-
image: moby/buildkit:v0.16.0
132+
image: moby/buildkit:v0.17.1
133133
options: --privileged
134134
ports:
135135
- 1234:1234

.github/workflows/weekly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-10-17T13:05:59Z by kres 34e72ac.
3+
# Generated on 2024-11-11T14:23:10Z by kres b6443eb.
44

55
name: weekly
66
concurrency:
@@ -16,7 +16,7 @@ jobs:
1616
- pkgs
1717
services:
1818
buildkitd:
19-
image: moby/buildkit:v0.16.0
19+
image: moby/buildkit:v0.17.1
2020
options: --privileged
2121
ports:
2222
- 1234:1234

Makefile

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-08-07T16:01:58Z by kres dbf015a.
3+
# Generated on 2024-11-11T14:23:10Z by kres b6443eb.
44

55
# common variables
66

@@ -41,6 +41,7 @@ COMMON_ARGS += --provenance=false
4141
COMMON_ARGS += --progress=$(PROGRESS)
4242
COMMON_ARGS += --platform=$(PLATFORM)
4343
COMMON_ARGS += --build-arg=SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH)
44+
COMMON_ARGS += --build-arg=BUILDKIT_MULTI_PLATFORM=1
4445

4546
# targets defines all the available targets
4647

@@ -110,6 +111,15 @@ target-%: ## Builds the specified target defined in the Pkgfile. The build resu
110111

111112
local-%: ## Builds the specified target defined in the Pkgfile using the local output type. The build result will be output to the specified local destination.
112113
@$(MAKE) target-$* TARGET_ARGS="--output=type=local,dest=$(DEST) $(TARGET_ARGS)"
114+
@PLATFORM=$(PLATFORM) ARTIFACTS=$(ARTIFACTS) bash -c '\
115+
for platform in $$(tr "," "\n" <<< "$$PLATFORM"); do \
116+
echo $$platform; \
117+
directory="$${platform//\//_}"; \
118+
if [[ -d "$$ARTIFACTS/$$directory" ]]; then \
119+
mv "$$ARTIFACTS/$$directory/"* $$ARTIFACTS; \
120+
rmdir "$$ARTIFACTS/$$directory/"; \
121+
fi; \
122+
done'
113123

114124
docker-%: ## Builds the specified target defined in the Pkgfile using the docker output type. The build result will be loaded into Docker.
115125
@$(MAKE) target-$* TARGET_ARGS="$(TARGET_ARGS)"

Pkgfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ vars:
129129
gmp_sha512: c99be0950a1d05a0297d65641dd35b75b74466f7bf03c9e8a99895a3b2f9a0856cd17887738fa51cf7499781b65c049769271cbcb77d057d2e9f1ec52e07dd84
130130

131131
# renovate: datasource=github-tags extractVersion=^go(?<version>.*)$ depName=golang/go
132-
golang_version: 1.23.2
133-
golang_sha256: 36930162a93df417d90bd22c6e14daff4705baac2b02418edda671cdfa9cd07f
134-
golang_sha512: e4f9d17ed7888b89b6a72966f8681bbacb5b8bebb7959e530dc058d2fa94012d45067d1884eccd352a0fc8279e6814a932260a46140b65593679d28598bf4d5c
132+
golang_version: 1.23.3
133+
golang_sha256: 8d6a77332487557c6afa2421131b50f83db4ae3c579c3bc72e670ee1f6968599
134+
golang_sha512: b9b0d36aa1c42f45434b839037f95201f20a1ac8e1c4a1ee4a646f49c85273038854540d36fca0ea3a9edc314431b410717331397d20a8d20c4bead78c060bbb
135135

136136
# renovate: datasource=git-tags extractVersion=^v(?<version>.*)$ depName=git://git.savannah.gnu.org/gperf.git
137137
gperf_version: 3.1

0 commit comments

Comments
 (0)