[docsite]: bump version (#56013)

This commit is contained in:
Cesar Jimenez 2023-08-18 12:40:44 -06:00 committed by GitHub
parent 9b7ac6219a
commit 901e90e5f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ set -euf -o pipefail
pushd "$(dirname "${BASH_SOURCE[0]}")/.." >/dev/null
# Update DOCSITE_VERSION everywhere in all places (including outside this repo)
version=v1.9.2
version=v1.9.4
suffix="${version}_$(go env GOOS)_$(go env GOARCH)"
url="https://github.com/sourcegraph/docsite/releases/download/${version}/docsite_${suffix}"

View File

@ -1,6 +1,6 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
DOCSITE_VERSION = "1.9.3"
DOCSITE_VERSION = "1.9.4"
SRC_CLI_VERSION = "5.1.0"
CTAGS_VERSION = "5.9.20220403.0"
@ -17,21 +17,21 @@ def tool_deps():
http_file(
name = "docsite_darwin_amd64",
urls = ["https://github.com/sourcegraph/docsite/releases/download/v{0}/docsite_v{0}_darwin_amd64".format(DOCSITE_VERSION)],
sha256 = "1bd76fba15dd6e11fc5215c7307eba38cf7db75cd739613e301c899c8cdf2c1b",
sha256 = "f3ad94e1398cc30e45518c82bd6fa9f7c386a8c395811ba49def24113215a2d9",
executable = True,
)
http_file(
name = "docsite_darwin_arm64",
urls = ["https://github.com/sourcegraph/docsite/releases/download/v{0}/docsite_v{0}_darwin_arm64".format(DOCSITE_VERSION)],
sha256 = "a494aad157dfc0b2de3b5126908c31fda64220ac5b59d1ec91ad4dfd4e1e1343",
sha256 = "b817d794537f38720d5c07eb323e729391b2d4ff85d1dac691e3cfe7a3cb6d13",
executable = True,
)
http_file(
name = "docsite_linux_amd64",
urls = ["https://github.com/sourcegraph/docsite/releases/download/v{0}/docsite_v{0}_linux_amd64".format(DOCSITE_VERSION)],
sha256 = "99f3b38b7590c2e9d1b94bde0352535210ee8a328e055d5a0d51d09ef5849f07",
sha256 = "7d60a55eb5017ebeb3a523143bd3007f74297db685491fad84499b2c60b3a872",
executable = True,
)

View File

@ -1496,7 +1496,7 @@ tests:
docsite:
cmd: .bin/docsite_${DOCSITE_VERSION} check ./doc
env:
DOCSITE_VERSION: v1.9.2 # Update DOCSITE_VERSION everywhere in all places (including outside this repo)
DOCSITE_VERSION: v1.9.4 # Update DOCSITE_VERSION everywhere in all places (including outside this repo)
web-e2e:
preamble: |