From a63a87e4efe39b947f1efcbfb148e2e7ba76176c Mon Sep 17 00:00:00 2001 From: Mohammed Al Sahaf Date: Wed, 12 Nov 2025 01:42:27 +0300 Subject: [PATCH] ci upgrades Signed-off-by: Mohammed Al Sahaf --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb1261cd1..f8912d8e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,13 +162,13 @@ jobs: os: - linux go: - - '1.23' + - '1.25' include: # Set the minimum Go patch version for the given Go minor # Usable via ${{ matrix.GO_SEMVER }} - - go: '1.23' - GO_SEMVER: '~1.23.0' + - go: '1.25' + GO_SEMVER: '~1.25.0' # Set some variables per OS, usable via ${{ matrix.VAR }} # OS_LABEL: the VM label from GitHub Actions (see https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-public-repositories) @@ -208,7 +208,7 @@ jobs: - name: Get dependencies run: | - go get -v -t -d ./... + go get -v -t ./... # mkdir test-results - name: Build Caddy working-directory: ./cmd/caddy @@ -219,7 +219,7 @@ jobs: - name: Install Hurl env: - HURL_VERSION: "5.0.1" + HURL_VERSION: "7.0.0" run: | curl --location --remote-name https://github.com/Orange-OpenSource/hurl/releases/download/${HURL_VERSION}/hurl_${HURL_VERSION}_amd64.deb sudo dpkg -i hurl_${HURL_VERSION}_amd64.deb