Skip to content
This repository was archived by the owner on Apr 11, 2025. It is now read-only.

Commit 719b5cc

Browse files
committed
feat: bump dependencies
Update tc-redirect-tap and rekres. Signed-off-by: Andrey Smirnov <[email protected]>
1 parent 78ba66b commit 719b5cc

File tree

5 files changed

+21
-20
lines changed

5 files changed

+21
-20
lines changed

Diff for: .github/workflows/ci.yaml

+3-3
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-11-12T11:08:13Z by kres b6443eb.
3+
# Generated on 2024-11-29T13:33:28Z by kres 232fe63.
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.17.1
36+
image: moby/buildkit:v0.17.2
3737
options: --privileged
3838
ports:
3939
- 1234:1234
@@ -129,7 +129,7 @@ jobs:
129129
- default
130130
services:
131131
buildkitd:
132-
image: moby/buildkit:v0.17.1
132+
image: moby/buildkit:v0.17.2
133133
options: --privileged
134134
ports:
135135
- 1234:1234

Diff for: .github/workflows/slack-notify.yaml

+5-5
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 2023-12-01T10:29:33Z by kres latest.
3+
# Generated on 2024-11-29T13:33:28Z by kres 232fe63.
44

55
name: slack-notify
66
"on":
@@ -25,11 +25,12 @@ jobs:
2525
run: |
2626
echo pull_request_number=$(gh pr view -R ${{ github.repository }} ${{ github.event.workflow_run.head_repository.owner.login }}:${{ github.event.workflow_run.head_branch }} --json number --jq .number) >> $GITHUB_OUTPUT
2727
- name: Slack Notify
28-
uses: slackapi/slack-github-action@v1
28+
uses: slackapi/slack-github-action@v2
2929
with:
30-
channel-id: proj-talos-maintainers
30+
method: chat.postMessage
3131
payload: |
3232
{
33+
"channel": "proj-talos-maintainers",
3334
"attachments": [
3435
{
3536
"color": "${{ github.event.workflow_run.conclusion == 'success' && '#2EB886' || github.event.workflow_run.conclusion == 'failure' && '#A30002' || '#FFCC00' }}",
@@ -89,5 +90,4 @@ jobs:
8990
}
9091
]
9192
}
92-
env:
93-
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
93+
token: ${{ secrets.SLACK_BOT_TOKEN }}

Diff for: .github/workflows/weekly.yaml

+2-2
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-11-12T11:08:13Z by kres b6443eb.
3+
# Generated on 2024-11-29T13:33:28Z by kres 232fe63.
44

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

Diff for: Makefile

+7-6
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-11-12T11:08:13Z by kres b6443eb.
3+
# Generated on 2024-11-29T13:33:28Z by kres 232fe63.
44

55
# common variables
66

@@ -36,12 +36,13 @@ PLATFORM ?= linux/amd64,linux/arm64
3636
PROGRESS ?= auto
3737
PUSH ?= false
3838
CI_ARGS ?=
39+
BUILDKIT_MULTI_PLATFORM ?= 1
3940
COMMON_ARGS = --file=Pkgfile
4041
COMMON_ARGS += --provenance=false
4142
COMMON_ARGS += --progress=$(PROGRESS)
4243
COMMON_ARGS += --platform=$(PLATFORM)
4344
COMMON_ARGS += --build-arg=SOURCE_DATE_EPOCH=$(SOURCE_DATE_EPOCH)
44-
COMMON_ARGS += --build-arg=BUILDKIT_MULTI_PLATFORM=1
45+
COMMON_ARGS += --build-arg=BUILDKIT_MULTI_PLATFORM=$(BUILDKIT_MULTI_PLATFORM)
4546

4647
# targets defines all the available targets
4748

@@ -112,13 +113,13 @@ target-%: ## Builds the specified target defined in the Pkgfile. The build resu
112113

113114
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.
114115
@$(MAKE) target-$* TARGET_ARGS="--output=type=local,dest=$(DEST) $(TARGET_ARGS)"
115-
@PLATFORM=$(PLATFORM) ARTIFACTS=$(ARTIFACTS) bash -c '\
116+
@PLATFORM=$(PLATFORM) DEST=$(DEST) bash -c '\
116117
for platform in $$(tr "," "\n" <<< "$$PLATFORM"); do \
117118
echo $$platform; \
118119
directory="$${platform//\//_}"; \
119-
if [[ -d "$$ARTIFACTS/$$directory" ]]; then \
120-
mv "$$ARTIFACTS/$$directory/"* $$ARTIFACTS; \
121-
rmdir "$$ARTIFACTS/$$directory/"; \
120+
if [[ -d "$$DEST/$$directory" ]]; then \
121+
mv "$$DEST/$$directory/"* $$DEST; \
122+
rmdir "$$DEST/$$directory/"; \
122123
fi; \
123124
done'
124125

Diff for: Pkgfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ format: v1alpha2
44

55
vars:
66
PKGS_PREFIX: ghcr.io/siderolabs
7-
PKGS_VERSION: v1.9.0-alpha.0-39-gb15a3d9
7+
PKGS_VERSION: v1.9.0
88

99
# renovate: datasource=git-refs versioning=git depName=https://github.com/awslabs/tc-redirect-tap.git
10-
tc_redirect_tap_ref: ad89862342243a8ba9abad6d23d358cffd2d4077
11-
tc_redirect_tap_sha256: c36a705ec1a72c182aa89167689429908f30e41336bafa4ddb8973492ba89dd8
12-
tc_redirect_tap_sha512: 040bb1aec9c7cfec79a3c26032979f370474ff2304339bf2d30730097368538b82c737c3ae7fa661dd602ccd6a004e542d9918355e9ed0597f582611ad14e0cc
10+
tc_redirect_tap_ref: 2d4b7a9d66df6f388f30ea7fa707263bf9acfae2
11+
tc_redirect_tap_sha256: c71ef3b29b38eeee18dca30ccac1e27a9dfd94ba6bc11de9ebeac4ce2f5c8e29
12+
tc_redirect_tap_sha512: 042ca7a2d8eb2998d5f0a1dd7c39e3bd35b40f27dab42a3a6c85500c8af27cbca4e498c8f3acbaec1d933c4f4226bab4c147e5ad4a30a607d0cfe26482fcecda
1313

1414
labels:
1515
org.opencontainers.image.source: https://github.com/siderolabs/extras

0 commit comments

Comments
 (0)