diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0cc350c..7fce294 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 1f232c0..291564f 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -15,7 +15,7 @@ jobs: steps: - name: labeler - uses: codelytv/pr-size-labeler@e13c249affa373466ee491cbca41c13d7d882463 + uses: codelytv/pr-size-labeler@c7a55a022747628b50f3eb5bf863b9e796b8f274 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} xs_label: "size/xs" diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 46b2d59..0196758 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 0 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 50ffcf4..282e634 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,7 +20,7 @@ jobs: fetch-depth: 0 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/.github/workflows/reviewdog.yml b/.github/workflows/reviewdog.yml index 114ede5..eafc475 100644 --- a/.github/workflows/reviewdog.yml +++ b/.github/workflows/reviewdog.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" @@ -40,7 +40,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e022135..a9a9fc3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index aac78ab..88f6a6d 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: install go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5 + uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 with: # use version from go.mod file go-version-file: "go.mod" diff --git a/Dockerfile b/Dockerfile index 986b91c..0df79f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM docker.io/grafana/k6:0.51.0@sha256:b2de44f593444feca8c66e7ee8cd230b272f614a7d7b2e784e7b76569c00fbf7 as k6-image +FROM docker.io/grafana/k6:0.53.0@sha256:9b48ed1865a697ac481b5aed98975d098c6086ad418a023eed12e43d876ce271 as k6-image -FROM alpine:3.20@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as certs +FROM alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d as certs RUN apk add --update --no-cache ca-certificates bash diff --git a/go.mod b/go.mod index d1e0f3b..76ca5f2 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,12 @@ module github.com/go-vela/vela-k6 -go 1.21 +go 1.21.9 -toolchain go1.22.4 +toolchain go1.23.1 require ( - github.com/Masterminds/semver/v3 v3.2.1 - github.com/go-vela/types v0.23.3 + github.com/Masterminds/semver/v3 v3.3.0 + github.com/go-vela/types v0.24.0 github.com/sirupsen/logrus v1.9.3 github.com/stretchr/testify v1.9.0 ) diff --git a/go.sum b/go.sum index 2d8efbd..654b4bc 100644 --- a/go.sum +++ b/go.sum @@ -1,11 +1,11 @@ -github.com/Masterminds/semver/v3 v3.2.1 h1:RN9w6+7QoMeJVGyfmbcgs28Br8cvmnucEXnY0rYXWg0= -github.com/Masterminds/semver/v3 v3.2.1/go.mod h1:qvl/7zhW3nngYb5+80sSMF+FG2BjYrf8m9wsX0PNOMQ= +github.com/Masterminds/semver/v3 v3.3.0 h1:B8LGeaivUe71a5qox1ICM/JLl0NqZSW5CHyL+hmvYS0= +github.com/Masterminds/semver/v3 v3.3.0/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lprf4nC11bSS5beM= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/go-vela/types v0.23.3 h1:Ktt5g5NW9NVkclP7UiuANblkJB2dDaG5xVnnLEFjIWM= -github.com/go-vela/types v0.23.3/go.mod h1:mEF9dLkk00rUXf/t39n2WvXZgJbxnPEEWy+DHqIlRUo= +github.com/go-vela/types v0.24.0 h1:KkkiXxw3uHckh/foyadmLY1YnLw6vhZbz9XwqONCj6o= +github.com/go-vela/types v0.24.0/go.mod h1:YWj6BIapl9Kbj4yHq/fp8jltXdGiwD/gTy1ez32Rzag= github.com/kr/pretty v0.2.0 h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs= github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=