From 909487e556835ea2bd18f993171334d41a8f4026 Mon Sep 17 00:00:00 2001 From: Noel Georgi Date: Wed, 27 Mar 2024 16:00:35 +0530 Subject: [PATCH] chore: bump deps Bump dependencies and rekres. Signed-off-by: Noel Georgi --- .conform.yaml | 77 ++++++++++++++++++++--------------- .github/workflows/ci.yaml | 10 ++--- .github/workflows/weekly.yaml | 6 +-- Makefile | 9 ++-- Pkgfile | 8 ++-- 5 files changed, 59 insertions(+), 51 deletions(-) diff --git a/.conform.yaml b/.conform.yaml index eb03bf2..4d98d03 100644 --- a/.conform.yaml +++ b/.conform.yaml @@ -1,37 +1,48 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2023-11-01T19:50:40Z by kres 3a2980e-dirty. +# Generated on 2024-03-27T10:26:41Z by kres latest. ---- policies: -- type: commit - spec: - dco: true - gpg: - required: true - identity: - gitHubOrganization: siderolabs - spellcheck: - locale: US - maximumOfOneCommit: true - header: - length: 89 - imperative: true - case: lower - invalidLastCharacters: . - body: - required: true - conventional: - types: ["chore","docs","perf","refactor","style","test","release"] - scopes: [".*"] -- type: license - spec: - skipPaths: - - .git/ - - testdata/ - includeSuffixes: - - .go - excludeSuffixes: - - .pb.go - - .pb.gw.go - header: "// This Source Code Form is subject to the terms of the Mozilla Public\u000A// License, v. 2.0. If a copy of the MPL was not distributed with this\u000A// file, You can obtain one at http://mozilla.org/MPL/2.0/.\u000A" + - type: commit + spec: + dco: true + gpg: + required: true + identity: + gitHubOrganization: siderolabs + spellcheck: + locale: US + maximumOfOneCommit: true + header: + length: 89 + imperative: true + case: lower + invalidLastCharacters: . + body: + required: true + conventional: + types: + - chore + - docs + - perf + - refactor + - style + - test + - release + scopes: + - .* + - type: license + spec: + root: . + skipPaths: + - .git/ + - testdata/ + includeSuffixes: + - .go + excludeSuffixes: + - .pb.go + - .pb.gw.go + header: | + // This Source Code Form is subject to the terms of the Mozilla Public + // License, v. 2.0. If a copy of the MPL was not distributed with this + // file, You can obtain one at http://mozilla.org/MPL/2.0/. diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 00ebc6e..181990f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-03-06T10:13:48Z by kres latest. +# Generated on 2024-03-27T10:26:41Z by kres latest. name: default concurrency: @@ -33,7 +33,7 @@ jobs: labels: ${{ steps.retrieve-pr-labels.outputs.result }} services: buildkitd: - image: moby/buildkit:v0.12.5 + image: moby/buildkit:v0.13.1 options: --privileged ports: - 1234:1234 @@ -53,7 +53,7 @@ jobs: - endpoint: tcp://buildkit-arm64.ci.svc.cluster.local:1234 platforms: linux/arm64 driver: remote - endpoint: tcp://localhost:1234 + endpoint: tcp://127.0.0.1:1234 - name: Build run: | make @@ -102,7 +102,7 @@ jobs: - default services: buildkitd: - image: moby/buildkit:v0.12.5 + image: moby/buildkit:v0.13.1 options: --privileged ports: - 1234:1234 @@ -122,7 +122,7 @@ jobs: - endpoint: tcp://buildkit-arm64.ci.svc.cluster.local:1234 platforms: linux/arm64 driver: remote - endpoint: tcp://localhost:1234 + endpoint: tcp://127.0.0.1:1234 - name: reproducibility-test run: | make reproducibility-test diff --git a/.github/workflows/weekly.yaml b/.github/workflows/weekly.yaml index 99b5e1e..de0c4d5 100644 --- a/.github/workflows/weekly.yaml +++ b/.github/workflows/weekly.yaml @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-03-06T10:13:48Z by kres latest. +# Generated on 2024-03-27T10:26:41Z by kres latest. name: weekly concurrency: @@ -16,7 +16,7 @@ jobs: - pkgs services: buildkitd: - image: moby/buildkit:v0.12.5 + image: moby/buildkit:v0.13.1 options: --privileged ports: - 1234:1234 @@ -36,7 +36,7 @@ jobs: - endpoint: tcp://buildkit-arm64.ci.svc.cluster.local:1234 platforms: linux/arm64 driver: remote - endpoint: tcp://localhost:1234 + endpoint: tcp://127.0.0.1:1234 - name: reproducibility-test run: | make reproducibility-test diff --git a/Makefile b/Makefile index 1b67603..0e4c28b 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-03-06T10:13:48Z by kres latest. +# Generated on 2024-03-27T10:26:41Z by kres latest. # common variables SHA := $(shell git describe --match=none --always --abbrev=8 --dirty) -TAG := $(shell git describe --tag --always --dirty) +TAG := $(shell git describe --tag --always --dirty --match v[0-9]\*) ABBREV_TAG := $(shell git describe --tags >/dev/null 2>/dev/null && git describe --tag --always --match v[0-9]\* --abbrev=0 || echo 'undefined') BRANCH := $(shell git rev-parse --abbrev-ref HEAD) ARTIFACTS := _out @@ -28,7 +28,7 @@ SOURCE_DATE_EPOCH := $(shell git log $(INITIAL_COMMIT_SHA) --pretty=%ct) # sync bldr image with pkgfile -BLDR_RELEASE := v0.2.3 +BLDR_RELEASE := v0.3.0 BLDR_IMAGE := ghcr.io/siderolabs/bldr:$(BLDR_RELEASE) BLDR := docker run --rm --user $(shell id -u):$(shell id -g) --volume $(PWD):/src --entrypoint=/bldr $(BLDR_IMAGE) --root=/src @@ -45,9 +45,6 @@ COMMON_ARGS += --progress=$(PROGRESS) COMMON_ARGS += --platform=$(PLATFORM) COMMON_ARGS += --build-arg=SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH) -# extra variables - - # targets defines all the available targets TARGETS = toolchain diff --git a/Pkgfile b/Pkgfile index 48faf99..50cde9d 100644 --- a/Pkgfile +++ b/Pkgfile @@ -1,4 +1,4 @@ -# syntax = ghcr.io/siderolabs/bldr:v0.2.3 +# syntax = ghcr.io/siderolabs/bldr:v0.3.0 format: v1alpha2 @@ -6,9 +6,9 @@ vars: BOOTSTRAP: /bootstrap # renovate: datasource=git-tags extractVersion=^binutils-(?.*)$ depName=git://sourceware.org/git/binutils-gdb.git - binutils_version: 2_41 - binutils_sha256: ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450 - binutils_sha512: 5df45d0bd6ddabdce4f35878c041e46a92deef01e7dea5facc97fd65cc06b59abc6fba0eb454b68e571c7e14038dc823fe7f2263843e6e627b7444eaf0fe9374 + binutils_version: 2_42 + binutils_sha256: f6e4d41fd5fc778b06b7891457b3620da5ecea1006c6a4a41ae998109f85a800 + binutils_sha512: 155f3ba14cd220102f4f29a4f1e5cfee3c48aa03b74603460d05afb73c70d6657a9d87eee6eb88bf13203fe6f31177a5c9addc04384e956e7da8069c8ecd20a6 # renovate: datasource=git-tags extractVersion=^releases/gcc-(?.*)$ depName=git://gcc.gnu.org/git/gcc.git gcc_version: 13.2.0