Skip to content

Commit

Permalink
revert chrome upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
ebebbington committed May 2, 2024
1 parent eee446a commit 30fc43c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 28 deletions.
6 changes: 2 additions & 4 deletions console/bumper_ci_service.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import { BumperService } from "https://raw.githubusercontent.com/drashland/services/master/ci/bumper_service.ts";
import { bumperFiles, preReleaseFiles } from "./bumper_ci_service_files.ts";
import { bumperFiles } from "./bumper_ci_service_files.ts";

const b = new BumperService("sinco", Deno.args);

if (b.isForPreRelease()) {
b.bump(preReleaseFiles);
} else {
if (!b.isForPreRelease()) {
b.bump(bumperFiles);
}
8 changes: 0 additions & 8 deletions console/bumper_ci_service_files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@ export const regexes = {
yml_deno: /deno: \[".+"\]/g,
};

export const preReleaseFiles = [
{
filename: "./egg.json",
replaceTheRegex: regexes.egg_json,
replaceWith: `"version": "{{ thisModulesLatestVersion }}"`,
},
];

const chromeVersionsRes = await fetch(
"https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions",
);
Expand Down
15 changes: 0 additions & 15 deletions egg.json

This file was deleted.

2 changes: 1 addition & 1 deletion tests/integration/docker_test/drivers.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:stable-slim

ENV CHROME_VERSION "124.0.6367.119"
ENV CHROME_VERSION "124.0.6367.91"

# Install chrome driver
RUN apt update -y \
Expand Down

0 comments on commit 30fc43c

Please sign in to comment.