BREAKING (potentially) - Bump docker version (Ubuntu 22.04 LTS) (#556)

* fix: resolution errors and vulnerability

* feat: bump (major) docker image rolling tag

* chore: bump major version

* fix: up workflow node to lts

* fix: conventions
This commit is contained in:
Webber Takken
2023-08-22 10:03:32 +02:00
committed by GitHub
parent ff551fe06d
commit a073719c29
13 changed files with 43983 additions and 22690 deletions

View File

@@ -33,7 +33,7 @@ class ImageTag {
this.imagePlatformPrefix = ImageTag.getImagePlatformPrefixes(
isCloudRunnerLocal ? process.platform : cloudRunnerBuilderPlatform,
);
this.imageRollingVersion = 1; // Will automatically roll to the latest non-breaking version.
this.imageRollingVersion = 2; // Will automatically roll to the latest non-breaking version.
}
static get versionPattern(): RegExp {
@@ -165,4 +165,5 @@ class ImageTag {
return `${image}:${tag}`; // '0' here represents the docker repo version
}
}
export default ImageTag;