Skip to content

Commit

Permalink
feat: update Go to 1.22
Browse files Browse the repository at this point in the history
Via pkgs.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
  • Loading branch information
smira committed Feb 9, 2024
1 parent 8909d6f commit c4934e1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2023-12-01T10:29:33Z by kres latest.
# Generated on 2024-02-09T15:10:55Z by kres latest.

name: default
concurrency:
Expand Down Expand Up @@ -33,7 +33,7 @@ jobs:
labels: ${{ steps.retrieve-pr-labels.outputs.result }}
services:
buildkitd:
image: moby/buildkit:v0.12.3
image: moby/buildkit:v0.12.5
options: --privileged
ports:
- 1234:1234
Expand Down Expand Up @@ -70,11 +70,12 @@ jobs:
make PUSH=true
- name: Retrieve PR labels
id: retrieve-pr-labels
if: github.event_name == 'pull_request' && always()
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
retries: "3"
script: |
if (context.eventName != "pull_request") { return "[]" }
const resp = await github.rest.issues.get({
issue_number: context.issue.number,
owner: context.repo.owner,
Expand All @@ -101,7 +102,7 @@ jobs:
- default
services:
buildkitd:
image: moby/buildkit:v0.12.3
image: moby/buildkit:v0.12.5
options: --privileged
ports:
- 1234:1234
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly.yaml
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2023-12-01T10:29:33Z by kres latest.
# Generated on 2024-02-09T15:10:55Z by kres latest.

name: weekly
concurrency:
Expand All @@ -16,7 +16,7 @@ jobs:
- pkgs
services:
buildkitd:
image: moby/buildkit:v0.12.3
image: moby/buildkit:v0.12.5
options: --privileged
ports:
- 1234:1234
Expand Down
19 changes: 18 additions & 1 deletion Makefile
@@ -1,6 +1,6 @@
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
#
# Generated on 2023-11-02T20:27:13Z by kres 70e6597-dirty.
# Generated on 2024-02-09T15:10:55Z by kres latest.

# common variables

Expand Down Expand Up @@ -71,6 +71,23 @@ To create a builder instance, run:

docker buildx create --name local --use

If running builds that needs to be cached aggresively create a builder instance with the following:

docker buildx create --name local --use --config=config.toml

config.toml contents:

[worker.oci]
gc = true
gckeepstorage = 50000

[[worker.oci.gcpolicy]]
keepBytes = 10737418240
keepDuration = 604800
filters = [ "type==source.local", "type==exec.cachemount", "type==source.git.checkout"]
[[worker.oci.gcpolicy]]
all = true
keepBytes = 53687091200

If you already have a compatible builder instance, you may use that instead.

Expand Down
2 changes: 1 addition & 1 deletion Pkgfile
Expand Up @@ -4,7 +4,7 @@ format: v1alpha2

vars:
PKGS_PREFIX: ghcr.io/siderolabs
PKGS_VERSION: v1.7.0-alpha.0
PKGS_VERSION: v1.7.0-alpha.0-22-g0ec4cc3

# renovate: datasource=git-refs versioning=git depName=https://github.com/awslabs/tc-redirect-tap.git
tc_redirect_tap_ref: 6827f7b2f5e9ec675cb7dc9bbe4b201c228d565e
Expand Down

0 comments on commit c4934e1

Please sign in to comment.