Skip to content

Commit 5c2c005

Browse files
fix(deps): update all dependencies
1 parent e08f21c commit 5c2c005

9 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/build-img-ghrunner-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cat ./mapt-event
4040
4141
- name: Upload crc-builder
42-
uses: actions/upload-artifact@v5
42+
uses: actions/upload-artifact@v6
4343
with:
4444
name: mapt-${{ env.ARCH_TYPE }}
4545
path: mapt*

.github/workflows/build-oci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
make oci-build-${{ env.ARCH_TYPE }}
6868
make oci-save-${{ env.ARCH_TYPE }}
6969
- name: Upload mapt artifacts for PR
70-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
70+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7171
with:
7272
name: mapt-${{ env.ARCH_TYPE }}
7373
path: mapt*
@@ -78,15 +78,15 @@ jobs:
7878
runs-on: ubuntu-24.04
7979
steps:
8080
- name: Download mapt oci flatten images
81-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
81+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
8282
with:
8383
pattern: mapt-*
8484
- name: copy both artifacts into single directory
8585
env:
8686
IMG: ghcr.io/redhat-developer/mapt:pr-${{ github.event.number }}
8787
run: echo ${IMG} > mapt-image
8888
- name: Upload combined mapt artifacts for PR
89-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
89+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9090
with:
9191
name: mapt-arm64-and-amd64
9292
path: mapt-*
@@ -100,7 +100,7 @@ jobs:
100100
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
101101

102102
- name: Download mapt oci flatten images
103-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
103+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
104104
with:
105105
pattern: mapt-*
106106

.github/workflows/destroy-hosted-runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-24.04
1313
steps:
1414
- name: Download mapt image from artifacts
15-
uses: actions/download-artifact@v6
15+
uses: actions/download-artifact@v7
1616
with:
1717
name: mapt
1818
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/provision-hosted-runner.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
echo "runner_token=$token" >> "$GITHUB_OUTPUT"
3030
3131
- name: Download mapt image from artifacts
32-
uses: actions/download-artifact@v6
32+
uses: actions/download-artifact@v7
3333
with:
3434
pattern: mapt*
3535
run-id: ${{ github.event.workflow_run.id }}

.github/workflows/push-oci-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
packages: write
3636
steps:
3737
- name: Download mapt assets
38-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
38+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
3939
with:
4040
run-id: ${{ github.event.workflow_run.id }}
4141
github-token: ${{ github.token }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ TKN_IMG ?= quay.io/redhat-developer/mapt:v${VERSION}-tkn
77

88
# Integrations
99
# renovate: datasource=github-releases depName=cirruslabs/cirrus-cli
10-
CIRRUS_CLI ?= v0.157.3
10+
CIRRUS_CLI ?= v0.158.0
1111
# renovate: datasource=github-releases depName=actions/runner
1212
GITHUB_RUNNER ?= 2.330.0
1313

go.mod

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/coocood/freecache v1.2.4
77
github.com/pulumi/pulumi-command/sdk v1.1.3
88
github.com/pulumi/pulumi-random/sdk/v4 v4.18.4
9-
github.com/pulumi/pulumi/sdk/v3 v3.210.0
9+
github.com/pulumi/pulumi/sdk/v3 v3.212.0
1010
github.com/sirupsen/logrus v1.9.3
1111
github.com/spf13/cobra v1.10.2
1212
)
@@ -20,11 +20,11 @@ require (
2020
github.com/aws/amazon-ec2-instance-selector/v3 v3.1.2
2121
github.com/aws/aws-sdk-go-v2 v1.41.0
2222
github.com/aws/aws-sdk-go-v2/config v1.32.5
23-
github.com/aws/aws-sdk-go-v2/service/ec2 v1.276.0
24-
github.com/aws/aws-sdk-go-v2/service/s3 v1.93.1
23+
github.com/aws/aws-sdk-go-v2/service/ec2 v1.277.0
24+
github.com/aws/aws-sdk-go-v2/service/s3 v1.94.0
2525
github.com/aws/aws-sdk-go-v2/service/sts v1.41.5
26-
github.com/pulumi/pulumi-aws-native/sdk v1.39.0
27-
github.com/pulumi/pulumi-aws/sdk/v7 v7.12.0
26+
github.com/pulumi/pulumi-aws-native/sdk v1.40.0
27+
github.com/pulumi/pulumi-aws/sdk/v7 v7.14.0
2828
github.com/pulumi/pulumi-awsx/sdk/v3 v3.1.0
2929
github.com/pulumi/pulumi-azure-native-sdk/authorization/v3 v3.11.0
3030
github.com/pulumi/pulumi-azure-native-sdk/compute/v3 v3.11.0
@@ -34,7 +34,7 @@ require (
3434
github.com/pulumi/pulumi-azure-native-sdk/resources/v3 v3.11.0
3535
github.com/pulumi/pulumi-azure-native-sdk/storage/v3 v3.11.0
3636
github.com/pulumi/pulumi-tls/sdk/v5 v5.2.3
37-
golang.org/x/exp v0.0.0-20251125195548-87e1e737ad39
37+
golang.org/x/exp 8475f28825e9
3838
)
3939

4040
require (
@@ -88,7 +88,7 @@ require (
8888
github.com/cespare/xxhash/v2 v2.3.0 // indirect
8989
github.com/charmbracelet/bubbles v0.21.0 // indirect
9090
github.com/charmbracelet/bubbletea v1.3.10 // indirect
91-
github.com/charmbracelet/colorprofile v0.3.3 // indirect
91+
github.com/charmbracelet/colorprofile v0.4.1 // indirect
9292
github.com/charmbracelet/lipgloss v1.1.0 // indirect
9393
github.com/charmbracelet/x/ansi v0.11.3 // indirect
9494
github.com/charmbracelet/x/cellbuf v0.0.14 // indirect
@@ -132,7 +132,7 @@ require (
132132
go.uber.org/multierr v1.11.0 // indirect
133133
go.yaml.in/yaml/v3 v3.0.4 // indirect
134134
golang.org/x/sync v0.19.0 // indirect
135-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
135+
google.golang.org/genproto/googleapis/rpc 97cd9d5aeac2 // indirect
136136
gopkg.in/yaml.v3 v3.0.1 // indirect
137137
)
138138

@@ -149,7 +149,7 @@ require (
149149
github.com/fsnotify/fsnotify v1.9.0 // indirect
150150
github.com/go-git/go-billy/v5 v5.7.0 // indirect
151151
github.com/go-git/go-git/v5 v5.16.4 // indirect
152-
github.com/go-playground/validator/v10 v10.28.0
152+
github.com/go-playground/validator/v10 v10.29.0
153153
github.com/gogo/protobuf v1.3.2 // indirect
154154
github.com/golang/glog v1.2.5 // indirect
155155
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect

oci/Containerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

2-
FROM registry.access.redhat.com/ubi9/go-toolset@sha256:75cb847263e05b395c171795d771570994019a8d9d0340ab6ef0e1b02b01bdb4 as builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset@sha256:56fc8480721e5febbd2b6810199a63b5b68c3c5ab826d082c8247054a1dc33e7 as builder
33
ARG TARGETARCH
44
USER root
55
WORKDIR /workspace
66
COPY . .
77

88
# renovate: datasource=github-releases depName=pulumi/pulumi
9-
ENV PULUMI_VERSION 3.210.0
9+
ENV PULUMI_VERSION 3.212.0
1010
ENV PULUMI_BASE_URL="https://github.com/pulumi/pulumi/releases/download/v${PULUMI_VERSION}/pulumi-v${PULUMI_VERSION}"
1111
ENV PULUMI_URL="${PULUMI_BASE_URL}-linux-x64.tar.gz"
1212

@@ -34,7 +34,7 @@ ENV AWS_SDK_LOAD_CONFIG=1 \
3434

3535
# Pulumi plugins
3636
# renovate: datasource=github-releases depName=pulumi/pulumi-aws
37-
ARG PULUMI_AWS_VERSION=v7.12.0
37+
ARG PULUMI_AWS_VERSION=v7.14.0
3838
# renovate: datasource=github-releases depName=pulumi/pulumi-awsx
3939
ARG PULUMI_AWSX_VERSION=v3.1.0
4040
# renovate: datasource=github-releases depName=pulumi/pulumi-azure-native
@@ -46,7 +46,7 @@ ARG PULUMI_TLS_VERSION=v5.2.3
4646
# renovate: datasource=github-releases depName=pulumi/pulumi-random
4747
ARG PULUMI_RANDOM_VERSION=v4.18.4
4848
# renovate: datasource=github-releases depName=pulumi/pulumi-aws-native
49-
ARG PULUMI_AWS_NATIVE_VERSION=v1.39.0
49+
ARG PULUMI_AWS_NATIVE_VERSION=v1.40.0
5050

5151
ENV PULUMI_HOME "/opt/mapt/run"
5252
WORKDIR ${PULUMI_HOME}

tools/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require github.com/golangci/golangci-lint/v2 v2.7.2
66

77
require (
88
github.com/charmbracelet/x/cellbuf v0.0.14 // indirect
9-
github.com/golangci/golines v0.0.0-20250217134842-442fd0091d95 // indirect
9+
github.com/golangci/golines 63639e8a3e5b // indirect
1010
)
1111

1212
require (
@@ -70,7 +70,7 @@ require (
7070
github.com/ccojocar/zxcvbn-go v1.0.4 // indirect
7171
github.com/cespare/xxhash/v2 v2.3.0 // indirect
7272
github.com/charithe/durationcheck v0.0.11 // indirect
73-
github.com/charmbracelet/colorprofile v0.3.3 // indirect
73+
github.com/charmbracelet/colorprofile v0.4.1 // indirect
7474
github.com/charmbracelet/lipgloss v1.1.0 // indirect
7575
github.com/charmbracelet/x/ansi v0.11.3 // indirect
7676
github.com/charmbracelet/x/term v0.2.2 // indirect
@@ -102,7 +102,7 @@ require (
102102
github.com/gofrs/flock v0.13.0 // indirect
103103
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32 // indirect
104104
github.com/golangci/go-printf-func-name v0.1.1 // indirect
105-
github.com/golangci/gofmt v0.0.0-20250704145412-3e58ba0443c6 // indirect
105+
github.com/golangci/gofmt e7be49a5ab4d // indirect
106106
github.com/golangci/misspell v0.7.0 // indirect
107107
github.com/golangci/plugin-module-register v0.1.2 // indirect
108108
github.com/golangci/revgrep v0.8.0 // indirect
@@ -212,7 +212,7 @@ require (
212212
go.uber.org/automaxprocs v1.6.0 // indirect
213213
go.uber.org/multierr v1.11.0 // indirect
214214
go.uber.org/zap v1.27.1 // indirect
215-
golang.org/x/exp/typeparams v0.0.0-20251125195548-87e1e737ad39 // indirect
215+
golang.org/x/exp/typeparams 8475f28825e9 // indirect
216216
golang.org/x/mod v0.31.0 // indirect
217217
golang.org/x/sync v0.19.0 // indirect
218218
golang.org/x/sys v0.39.0 // indirect

0 commit comments

Comments
 (0)