Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Upgrade k6 dependencies #1259

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
[tools]
python = "3.12"
"pipx:poetry" = "2.0"
uv = "0.4"
uv = "0.5"

[settings]
experimental = true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
"pipx:black" = "24.10"
"pipx:isort" = "5.13"
python = "3.12"
uv = "0.4"
uv = "0.5"

[settings]
pipx_uvx = true
Expand Down
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pre-commit = "4.0"
python = "3.12"
tilt = "0.33"
usage = "latest"
uv = "0.4"
uv = "0.5"

[settings]
experimental = true
Expand Down
10 changes: 4 additions & 6 deletions scripts/k6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,10 @@ FROM docker.io/golang:1.23 AS builder

WORKDIR /app

# xk6-sse doesn't support k6>=0.53
# https://github.com/phymbert/xk6-sse/issues/19
RUN go install go.k6.io/xk6/cmd/xk6@v0.13.0
RUN xk6 build v0.52.0 --output /app/xk6 \
--with github.com/avitalique/xk6-file@v1.4.0 \
--with github.com/phymbert/xk6-sse@v0.1.2
RUN go install go.k6.io/xk6/cmd/xk6@v0.13.4
RUN xk6 build v0.55.0 --output /app/xk6 \
--with github.com/avitalique/xk6-file@v1.4.2 \
--with github.com/phymbert/xk6-sse@v0.1.7

FROM docker.io/alpine:3

Expand Down
Loading