Skip to content

Commit 653182a

Browse files
committed
feat: update Go to 1.22.9
See https://go.dev/doc/devel/release#go1.22.minor Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 7719230 commit 653182a

File tree

5 files changed

+21
-11
lines changed

5 files changed

+21
-11
lines changed

.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-08-28T11:14:40Z by kres 7048c24.
3+
# Generated on 2024-11-12T13:24:02Z 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.15.2
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.15.2
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-08-28T11:14:40Z by kres 7048c24.
3+
# Generated on 2024-11-12T13:24:02Z 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.15.2
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-12T13:24:02Z 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.22.8
133-
golang_sha256: df12c23ebf19dea0f4bf46a22cbeda4a3eca6f474f318390ce774974278440b8
134-
golang_sha512: ee63cdec73e63924449c56a5ea223a4ad05ec4839823591937889fb36052ebd34357f892a57193c6f697bf16cd9d8168e8fcb560472658b7b167c41b8557146f
132+
golang_version: 1.22.9
133+
golang_sha256: e81a362f51aee2125722b018e46714e6a055a1954283414c0f937e737013db22
134+
golang_sha512: d9237212e82f6acb40685fdbe75f3e5c6a6340329c31a885e7f241a5868b5835052e90063db849a5960c8242da2971c55a3a3cab2c0e0e62754b8c33344887cf
135135

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

hack/release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2024-08-28T11:14:40Z by kres 7048c24.
5+
# Generated on 2024-11-12T13:24:02Z by kres b6443eb.
66

77
set -e
88

0 commit comments

Comments
 (0)