chore: freeze revisions (#8543)

This commit is contained in:
jrandolf 2022-06-22 15:56:43 +02:00 committed by GitHub
parent 84712cbc28
commit 70c7f64a58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,12 +14,7 @@
* limitations under the License.
*/
type Revisions = Readonly<{
readonly chromium: string;
readonly firefox: string;
}>;
export const PUPPETEER_REVISIONS: Revisions = {
export const PUPPETEER_REVISIONS = Object.freeze({
chromium: '1002410',
firefox: 'latest',
};
});