diff options
author | Kyle D <kdumontnu@gmail.com> | 2022-09-06 19:00:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-07 00:00:34 +0100 |
commit | 6361b48b21aa4969eeb545ebd262968f2e4b8747 (patch) | |
tree | d14bf15d24704d85578df052a0b79f3894de6267 | |
parent | f1ea6c92d18699dfe935556f065be288d3bc2e78 (diff) | |
download | gitea-6361b48b21aa4969eeb545ebd262968f2e4b8747.tar.gz gitea-6361b48b21aa4969eeb545ebd262968f2e4b8747.zip |
Bump playwright test image to match version in package.json (#21097)
Bump the playwright test image to match version in package.json (so it
doesn't re-download browsers setup)
-rw-r--r-- | .drone.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index c72c4226d0..086c196270 100644 --- a/.drone.yml +++ b/.drone.yml @@ -554,7 +554,7 @@ steps: # TODO: We should probably build all dependencies into a test image - name: test-e2e - image: mcr.microsoft.com/playwright:v1.23.1-focal + image: mcr.microsoft.com/playwright:v1.24.0-focal commands: - curl -sLO https://go.dev/dl/go1.18.linux-amd64.tar.gz && tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz - groupadd --gid 1001 gitea && useradd -m --gid 1001 --uid 1001 gitea |