diff --git a/CHANGELOG.md b/CHANGELOG.md index fa0e7159..2f11b1a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ ## [Unreleased] -## [1.15.3] +## [1.16.0] + +### 🚀 Features + +- Downloading job logs instead of entire run logs #108 ## [1.15.2] @@ -367,4 +371,4 @@ Full Changelog: https://github.com/cunla/github-actions-jetbrains-plugin/commits ### Removed ### Fixed ### Security ---> \ No newline at end of file +--> diff --git a/gradle.properties b/gradle.properties index e1c6d426..39b7470a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ pluginGroup=com.dsoftware.ghmanager pluginName=github-actions-manager # SemVer format -> https://semver.org -pluginVersion=1.15.3 +pluginVersion=1.16.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild=233 @@ -12,7 +12,7 @@ pluginUntilBuild=235.* # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension platformType=IC #platformVersion=LATEST-EAP-SNAPSHOT -platformVersion=2023.3.3 +platformVersion=2023.3.4 # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22 diff --git a/src/main/kotlin/com/dsoftware/ghmanager/Constants.kt b/src/main/kotlin/com/dsoftware/ghmanager/Constants.kt index 857d5588..0ab2ab9c 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/Constants.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/Constants.kt @@ -9,14 +9,6 @@ object Constants { const val LOG_MSG_MISSING = "Job logs missing for: " const val LOG_MSG_JOB_IN_PROGRESS = "Job is still in progress, can't view logs." - fun emptyTextMessage(logValue: String): Boolean { - return (logValue.startsWith(LOG_MSG_MISSING) - || logValue.startsWith(LOG_MSG_PICK_JOB) - || logValue.startsWith( - LOG_MSG_JOB_IN_PROGRESS - )) - } - fun updateEmptyText(logValue: String, emptyText: StatusText): Boolean { if (logValue.startsWith(LOG_MSG_MISSING) || logValue.startsWith(LOG_MSG_PICK_JOB) diff --git a/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadJobsAction.kt b/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadJobsAction.kt index ec7aa08d..a17fcc16 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadJobsAction.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadJobsAction.kt @@ -5,7 +5,7 @@ import com.intellij.ide.actions.RefreshAction import com.intellij.openapi.actionSystem.AnActionEvent import com.intellij.openapi.diagnostic.logger -class ReloadJobsAction : RefreshAction("Refresh Workflow Jobs", null, AllIcons.Actions.Refresh) { +class ReloadJobsAction : RefreshAction("Refresh Workflow Run Jobs List", null, AllIcons.Actions.Refresh) { override fun update(e: AnActionEvent) { val selection = e.getData(ActionKeys.ACTION_DATA_CONTEXT)?.jobsDataProvider e.presentation.isEnabled = selection != null diff --git a/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadLogAction.kt b/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadLogAction.kt index 38b843cb..ba6a1e7b 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadLogAction.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/actions/ReloadLogAction.kt @@ -5,18 +5,18 @@ import com.intellij.ide.actions.RefreshAction import com.intellij.openapi.actionSystem.AnActionEvent import com.intellij.openapi.diagnostic.logger -class ReloadLogAction : RefreshAction("Refresh Workflow Log", null, AllIcons.Actions.Refresh) { +class ReloadJobLogAction : RefreshAction("Refresh Job Log", null, AllIcons.Actions.Refresh) { override fun update(e: AnActionEvent) { - val selection = e.getData(ActionKeys.ACTION_DATA_CONTEXT)?.logsDataProvider + val selection = e.getData(ActionKeys.ACTION_DATA_CONTEXT)?.logDataProvider e.presentation.isEnabled = selection != null } override fun actionPerformed(e: AnActionEvent) { LOG.debug("GitHubWorkflowLogReloadAction action performed") - e.getRequiredData(ActionKeys.ACTION_DATA_CONTEXT).logsDataProvider?.reload() + e.getRequiredData(ActionKeys.ACTION_DATA_CONTEXT).logDataProvider?.reload() } companion object { - private val LOG = logger() + private val LOG = logger() } } \ No newline at end of file diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/GetJobLogRequest.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/GetJobLogRequest.kt new file mode 100644 index 00000000..1f7ea8e9 --- /dev/null +++ b/src/main/kotlin/com/dsoftware/ghmanager/api/GetJobLogRequest.kt @@ -0,0 +1,128 @@ +package com.dsoftware.ghmanager.api + +import com.dsoftware.ghmanager.api.model.Job +import com.dsoftware.ghmanager.api.model.JobStep +import com.intellij.openapi.diagnostic.logger +import org.jetbrains.plugins.github.api.GithubApiRequest +import org.jetbrains.plugins.github.api.GithubApiResponse +import java.io.BufferedReader +import java.io.IOException +import java.io.InputStream +import java.io.InputStreamReader +import java.text.ParseException +import java.text.SimpleDateFormat +import java.util.Date +import java.util.TimeZone + +typealias JobLog = Map + +class GetJobLogRequest(private val job: Job) : GithubApiRequest.Get(job.url + "/logs") { + private val stepsPeriodMap = job.steps?.associate { step -> + step.number to (step.startedAt to step.completedAt) + } ?: emptyMap() + private val lastStepNumber: Int = stepsPeriodMap.keys.maxOrNull() ?: 0 + + override fun extractResult(response: GithubApiResponse): String { + LOG.debug("extracting result for $url") + return response.handleBody { + extractJobLogFromStream(it) + } + } + + fun extractJobLogFromStream(inputStream: InputStream): String { + val stepLogs = extractLogByStep(inputStream) + return stepsAsLog(stepLogs) + } + + fun extractLogByStep(inputStream: InputStream): Map { + val dateTimePattern = "yyyy-MM-dd'T'HH:mm:ss.SSS" + val formatter = SimpleDateFormat(dateTimePattern) + val contentBuilders = HashMap() + formatter.timeZone = TimeZone.getTimeZone("UTC") + var lineNum = 0 + var currStep = 1 + try { + val reader = BufferedReader(InputStreamReader(inputStream)) + val lines = reader.lines() + for (line in lines) { + ++lineNum + if (line.length < 29) { + contentBuilders.getOrDefault(currStep, StringBuilder()).append(line + "\n") + continue + } + val datetimeStr = line.substring(0, 23) + try { + val time = formatter.parse(datetimeStr) + currStep = findStep(currStep, time) + } catch (e: ParseException) { + LOG.warn("Failed to parse date \"$datetimeStr\" from log line $lineNum: $line, $e") + } + contentBuilders.getOrPut(currStep) { StringBuilder(400_000) }.append(line + "\n") + } + } catch (e: IOException) { + LOG.warn("Could not read log from input stream", e) + } + return contentBuilders + } + + private fun findStep(initialStep: Int, time: Date): Int { + var currStep = initialStep + while (currStep < lastStepNumber) { + if (!stepsPeriodMap.containsKey(currStep)) { + currStep += 1 + continue + } + val currStart = stepsPeriodMap[currStep]?.first + val currEnd = stepsPeriodMap[currStep]?.second + if (currStart != null && currStart.after(time)) { + return currStep + } + if ((currStart == null || currStart.before(time) || currStart == time) + && (currEnd == null || currEnd.after(time) || currEnd == time) + ) { + return currStep + } + currStep += 1 + } + return currStep + } + + private fun stepsAsLog(stepLogs: JobLog): String { + val stepsResult: Map = if (job.steps == null) { + emptyMap() + } else { + job.steps.associateBy { it.number } + } + val stepNumbers = stepsResult.keys.sorted() + if (!stepNumbers.containsAll(stepLogs.keys)) { + LOG.warn( + "Some logs do not have a step-result associated " + + "[steps in results=$stepNumbers, step with logs=${stepLogs.keys}] " + ) + } + val res = StringBuilder(1_000_000) + for (index in stepNumbers) { + val stepInfo = stepsResult[index]!! + val indexStr = "%3d".format(index) + res.append( + when (stepInfo.conclusion) { + "skipped" -> "\u001B[0m\u001B[37m---- Step ${indexStr}: ${stepInfo.name} (skipped) ----\u001b[0m\n" + "failure" -> "\u001B[0m\u001B[31m---- Step ${indexStr}: ${stepInfo.name} (failed) ----\u001b[0m\n" + else -> "\u001B[0m\u001B[32m---- Step ${indexStr}: ${stepInfo.name} ----\u001b[0m\n" + } + ) + if (stepInfo.conclusion != "skipped" && stepLogs.containsKey(index) && (res.length < 950_000)) { + if (res.length + (stepLogs[index]?.length ?: 0) < 990_000) { + res.append(stepLogs[index]) + } else { + res.append("Log is too big to display, showing only first 1mb") + } + } + } + return res.toString() + } + + companion object { + private val LOG = logger() + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/GetRunLogRequest.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/GetRunLogRequest.kt deleted file mode 100644 index 8ce5619a..00000000 --- a/src/main/kotlin/com/dsoftware/ghmanager/api/GetRunLogRequest.kt +++ /dev/null @@ -1,63 +0,0 @@ -package com.dsoftware.ghmanager.api - -import com.intellij.openapi.diagnostic.logger -import org.apache.commons.io.IOUtils -import org.jetbrains.plugins.github.api.GithubApiRequest -import org.jetbrains.plugins.github.api.GithubApiResponse -import java.io.EOFException -import java.io.InputStream -import java.nio.charset.StandardCharsets -import java.util.TreeMap -import java.util.zip.ZipInputStream - -class GetRunLogRequest(url: String) : GithubApiRequest.Get(url) { - private lateinit var workflowInfo: WorkflowRunLog - - override fun extractResult(response: GithubApiResponse): WorkflowRunLog { - LOG.debug("extracting result for $url") - return response.handleBody { - workflowInfo = extractFromStream(it) - workflowInfo - } - } - - companion object { - private val LOG = logger() - fun extractFromStream(inputStream: InputStream): WorkflowRunLog { - val content = HashMap>() - try { - ZipInputStream(inputStream).use { - while (true) { - val entry = it.nextEntry ?: break - if (entry.isDirectory) { - continue - } - val name = entry.name - - if (!name.contains("/")) { - val (jobIndex, jobName) = name.split("_") - if (jobIndex == "1") { - //This is a special case, all concatenated logs in root are marked with 1_ - //We print the log with (1).txt as the first one only - if (!jobName.endsWith(" (1).txt")) { - continue - } - } - } else { - var (jobName, stepFileName) = name.split("/") - stepFileName = stepFileName.removeSuffix(".txt") - val stepNameParts = stepFileName.split("_") - val stepIndex = stepNameParts[0].toInt() - val stepLog = IOUtils.toString(it, StandardCharsets.UTF_8.toString()) - content.computeIfAbsent(jobName) { TreeMap() }[stepIndex] = stepLog - } - } - } - } catch (e: EOFException) { - LOG.warn(e.message) - throw e - } - return content - } - } -} \ No newline at end of file diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/GithubApi.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/GithubApi.kt index 9756af01..f7f0197a 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/api/GithubApi.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/api/GithubApi.kt @@ -1,5 +1,6 @@ package com.dsoftware.ghmanager.api +import com.dsoftware.ghmanager.api.model.Job import com.dsoftware.ghmanager.api.model.WorkflowRunJobs import com.dsoftware.ghmanager.api.model.WorkflowRuns import com.dsoftware.ghmanager.api.model.WorkflowTypes @@ -19,12 +20,9 @@ data class WorkflowRunFilter( val workflowId: Long? = null, ) -typealias JobLog = Map -typealias WorkflowRunLog = Map - object GithubApi : GithubApiRequests.Entity("/repos") { private val LOG = logger() - fun getWorkflowRunLogs(url: String) = GetRunLogRequest(url).withOperationName("Download Workflow log") + fun getJobLog(job: Job) = GetJobLogRequest(job).withOperationName("Get Job log ${job.id}") fun postUrl(name: String, url: String, data: Any = Object()) = GithubApiRequest.Post.Json(url, data, Object::class.java, null).withOperationName(name) @@ -71,7 +69,6 @@ object GithubApi : GithubApiRequests.Entity("/repos") { ) - private inline fun get( url: String, opName: String, pagination: GithubRequestPagination? = null diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/model/JobModel.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/model/JobModel.kt index 854639d3..0f177c33 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/api/model/JobModel.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/api/model/JobModel.kt @@ -35,6 +35,8 @@ data class Job( /* The id of the job. */ val id: Long, + val workflowName: String?, + val headBranch: String?, /* The id of the associated workflow run. */ val runId: Long, val runUrl: String, @@ -49,6 +51,8 @@ data class Job( val status: String, /* The outcome of the job. */ val conclusion: String?, + @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss'Z'", timezone = "UTC") + val createdAt: Date?, /* The time that the job started, in ISO 8601 format. */ @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss'Z'", timezone = "UTC") val startedAt: Date?, @@ -102,17 +106,12 @@ data class Job( * @param completedAt The time that the job finished, in ISO 8601 format. */ data class JobStep( - /* The phase of the lifecycle that the job is currently in. */ val status: String, - /* The outcome of the job. */ val conclusion: String?, - /* The name of the job. */ val name: String, val number: Int, - /* The time that the step started, in ISO 8601 format. */ @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX", timezone = "UTC") val startedAt: Date? = null, - /* The time that the job finished, in ISO 8601 format. */ @JsonFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX", timezone = "UTC") val completedAt: Date? = null ) \ No newline at end of file diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/model/RunModel.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/model/RunModel.kt index d6ba9d95..f5d25496 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/api/model/RunModel.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/api/model/RunModel.kt @@ -1,23 +1,9 @@ package com.dsoftware.ghmanager.api.model import com.fasterxml.jackson.annotation.JsonFormat -import kotlinx.serialization.Serializable import java.util.Date -data class WorkflowTypes( - val totalCount: Int, - val workflows: List = emptyList() -) - -@Serializable -data class WorkflowType( - val id: Long, - val name: String, - val path: String, - val state: String, -) - data class PullRequest( val id: Int, val number: Int, diff --git a/src/main/kotlin/com/dsoftware/ghmanager/api/model/WorkflowTypes.kt b/src/main/kotlin/com/dsoftware/ghmanager/api/model/WorkflowTypes.kt new file mode 100644 index 00000000..569ba3f7 --- /dev/null +++ b/src/main/kotlin/com/dsoftware/ghmanager/api/model/WorkflowTypes.kt @@ -0,0 +1,16 @@ +package com.dsoftware.ghmanager.api.model + +import kotlinx.serialization.Serializable + +data class WorkflowTypes( + val totalCount: Int, + val workflows: List = emptyList() +) + +@Serializable +data class WorkflowType( + val id: Long, + val name: String, + val path: String, + val state: String, +) \ No newline at end of file diff --git a/src/main/kotlin/com/dsoftware/ghmanager/data/DataProviders.kt b/src/main/kotlin/com/dsoftware/ghmanager/data/DataProviders.kt index 8d0f1f2d..1f4254f4 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/data/DataProviders.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/data/DataProviders.kt @@ -1,7 +1,7 @@ package com.dsoftware.ghmanager.data -import com.dsoftware.ghmanager.api.WorkflowRunLog import com.dsoftware.ghmanager.api.GithubApi +import com.dsoftware.ghmanager.api.model.Job import com.dsoftware.ghmanager.api.model.WorkflowRunJobs import com.intellij.openapi.Disposable import com.intellij.openapi.diagnostic.thisLogger @@ -9,6 +9,7 @@ import com.intellij.openapi.progress.ProgressManager import com.intellij.util.EventDispatcher import org.jetbrains.plugins.github.api.GithubApiRequest import org.jetbrains.plugins.github.api.GithubApiRequestExecutor +import org.jetbrains.plugins.github.exceptions.GithubStatusCodeException import org.jetbrains.plugins.github.util.LazyCancellableBackgroundProcessValue import java.io.IOException import java.util.EventListener @@ -33,6 +34,9 @@ open class DataProvider( } catch (ioe: IOException) { LOG.warn("Error when getting $githubApiRequest.url: $ioe") errorValue ?: throw ioe + }catch (e: GithubStatusCodeException){ + LOG.warn("Error when getting $githubApiRequest.url: $e") + errorValue ?: throw e } } @@ -64,26 +68,14 @@ open class DataProvider( class JobLogDataProvider( progressManager: ProgressManager, requestExecutor: GithubApiRequestExecutor, - jobLogUrl: String -) : DataProvider( + job: Job +) : DataProvider( progressManager, requestExecutor, - GithubApi.getWorkflowRunLogs(jobLogUrl), - emptyMap() + GithubApi.getJobLog(job), + null ) -class WorkflowRunLogsDataProvider( - progressManager: ProgressManager, - requestExecutor: GithubApiRequestExecutor, - workflowLogsUrl: String, -) : DataProvider( - progressManager, - requestExecutor, - GithubApi.getWorkflowRunLogs(workflowLogsUrl), - emptyMap() -) - - class WorkflowRunJobsDataProvider( progressManager: ProgressManager, requestExecutor: GithubApiRequestExecutor, diff --git a/src/main/kotlin/com/dsoftware/ghmanager/data/LogLoadingModelListener.kt b/src/main/kotlin/com/dsoftware/ghmanager/data/LogLoadingModelListener.kt index 542735e0..38bd5f7c 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/data/LogLoadingModelListener.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/data/LogLoadingModelListener.kt @@ -3,7 +3,7 @@ package com.dsoftware.ghmanager.data import com.dsoftware.ghmanager.Constants.LOG_MSG_JOB_IN_PROGRESS import com.dsoftware.ghmanager.Constants.LOG_MSG_MISSING import com.dsoftware.ghmanager.Constants.LOG_MSG_PICK_JOB -import com.dsoftware.ghmanager.api.WorkflowRunLog +import com.dsoftware.ghmanager.api.JobLog import com.dsoftware.ghmanager.api.model.Job import com.dsoftware.ghmanager.api.model.JobStep import com.intellij.collaboration.ui.SingleValueModel @@ -16,11 +16,11 @@ import org.jetbrains.plugins.github.pullrequest.ui.GHLoadingModel class LogLoadingModelListener( workflowRunDisposable: Disposable, - dataProviderModel: SingleValueModel, + dataProviderModel: SingleValueModel, private val jobsSelectionHolder: JobListSelectionHolder, ) : GHLoadingModel.StateChangeListener { val logModel = SingleValueModel(null) - val logsLoadingModel = GHCompletableFutureLoadingModel(workflowRunDisposable) + val logsLoadingModel = GHCompletableFutureLoadingModel(workflowRunDisposable) init { jobsSelectionHolder.addSelectionChangeListener(workflowRunDisposable, this::setLogValue) @@ -50,51 +50,21 @@ class LogLoadingModelListener( } - private fun stepsAsLog(stepLogs: Map, selection: Job): String { - val stepsResult: Map = if (selection.steps == null) { - emptyMap() - } else { - selection.steps.associateBy { it.number } - } - val stepNumbers = stepsResult.keys.sorted() - if (!stepNumbers.containsAll(stepLogs.keys)) { - LOG.warn( - "Some logs do not have a step-result associated " + - "[steps in results=$stepNumbers, step with logs=${stepLogs.keys}] " - ) - } - val res = StringBuilder() - for (index in stepNumbers) { - val stepInfo = stepsResult[index]!! - val logs = if (stepLogs.containsKey(index)) stepLogs[index] else "" - res.append( - when (stepInfo.conclusion) { - "skipped" -> "\u001B[0m\u001B[37m---- Step: ${index}_${stepInfo.name} (skipped) ----\u001b[0m\n" - "failure" -> "\u001B[0m\u001B[31m---- Step: ${index}_${stepInfo.name} (failed) ----\u001b[0m\n${logs}" - else -> "\u001B[0m\u001B[32m---- Step: ${index}_${stepInfo.name} ----\u001b[0m\n${logs}" - } - ) - } - return res.toString() - } + private fun setLogValue() { - val removeChars = setOf('<', '>', '/', ':') val jobSelection = jobsSelectionHolder.selection - val jobName = jobSelection?.name?.filterNot { - removeChars.contains(it) - }?.trim() val logs = - if (jobName == null || !logsLoadingModel.resultAvailable) + if (jobSelection == null || !logsLoadingModel.resultAvailable) null else - logsLoadingModel.result?.get(jobName) + logsLoadingModel.result logModel.value = when { logsLoadingModel.result == null -> null - jobName == null -> LOG_MSG_PICK_JOB - logs == null && jobSelection.status == "in_progress" -> LOG_MSG_JOB_IN_PROGRESS + jobSelection == null -> LOG_MSG_PICK_JOB + jobSelection.status == "in_progress" -> LOG_MSG_JOB_IN_PROGRESS logs == null -> LOG_MSG_MISSING + jobSelection.name - else -> stepsAsLog(logs, jobSelection) + else -> logs } } diff --git a/src/main/kotlin/com/dsoftware/ghmanager/data/SingleRunDataLoader.kt b/src/main/kotlin/com/dsoftware/ghmanager/data/SingleRunDataLoader.kt index cb1486f0..24ecb8d3 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/data/SingleRunDataLoader.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/data/SingleRunDataLoader.kt @@ -1,5 +1,6 @@ package com.dsoftware.ghmanager.data +import com.dsoftware.ghmanager.api.model.Job import com.dsoftware.ghmanager.api.model.WorkflowRun import com.google.common.cache.CacheBuilder import com.intellij.openapi.Disposable @@ -23,11 +24,10 @@ class SingleRunDataLoader( .maximumSize(200) .build>() - - fun getLogsDataProvider(workflowRun: WorkflowRun): WorkflowRunLogsDataProvider { - return cache.get(workflowRun.logsUrl) { - WorkflowRunLogsDataProvider(progressManager, requestExecutor, workflowRun.logsUrl) - } as WorkflowRunLogsDataProvider + fun getJobLogDataProvider(job: Job): JobLogDataProvider { + return cache.get("${job.url}/logs") { + JobLogDataProvider(progressManager, requestExecutor, job) + } as JobLogDataProvider } fun getJobsDataProvider(workflowRun: WorkflowRun): WorkflowRunJobsDataProvider { diff --git a/src/main/kotlin/com/dsoftware/ghmanager/data/WorkflowRunSelectionContext.kt b/src/main/kotlin/com/dsoftware/ghmanager/data/WorkflowRunSelectionContext.kt index c5fdbb3e..6e41e104 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/data/WorkflowRunSelectionContext.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/data/WorkflowRunSelectionContext.kt @@ -1,6 +1,7 @@ package com.dsoftware.ghmanager.data import com.dsoftware.ghmanager.api.WorkflowRunFilter +import com.dsoftware.ghmanager.api.model.Job import com.dsoftware.ghmanager.api.model.WorkflowRun import com.intellij.collaboration.ui.SingleValueModel import com.intellij.openapi.Disposable @@ -35,14 +36,16 @@ class WorkflowRunSelectionContext internal constructor( get() = runsListLoader.listModel private val selectedWfRun: WorkflowRun? get() = runSelectionHolder.selection - val jobDataProviderLoadModel: SingleValueModel = SingleValueModel(null) - val logDataProviderLoadModel: SingleValueModel = SingleValueModel(null) var selectedRunDisposable = Disposer.newDisposable("Selected run disposable") - val logsDataProvider: WorkflowRunLogsDataProvider? - get() = selectedWfRun?.let { dataLoader.getLogsDataProvider(it) } + val jobDataProviderLoadModel: SingleValueModel = SingleValueModel(null) val jobsDataProvider: WorkflowRunJobsDataProvider? get() = selectedWfRun?.let { dataLoader.getJobsDataProvider(it) } - + var selectedJobDisposable = Disposer.newDisposable("Selected job disposable") + private val selectedJob: Job? + get() = jobSelectionHolder.selection + val jobLogDataProviderLoadModel: SingleValueModel = SingleValueModel(null) + val logDataProvider: JobLogDataProvider? + get() = selectedJob?.let { dataLoader.getJobLogDataProvider(it) } init { if (!parentDisposable.isDisposed) { Disposer.register(parentDisposable, this) @@ -54,10 +57,16 @@ class WorkflowRunSelectionContext internal constructor( selectedRunDisposable.dispose() selectedRunDisposable = Disposer.newDisposable("Selected run disposable") } + jobSelectionHolder.addSelectionChangeListener(parentDisposable) { + LOG.debug("jobSelectionHolder selection change listener") + setNewLogProvider() + selectedJobDisposable.dispose() + selectedJobDisposable = Disposer.newDisposable("Selected job disposable") + } dataLoader.addInvalidationListener(this) { LOG.debug("invalidation listener") jobDataProviderLoadModel.value = null - logDataProviderLoadModel.value = null + jobDataProviderLoadModel.value = null selectedRunDisposable.dispose() } task = AppExecutorUtil.getAppScheduledExecutorService().scheduleWithFixedDelay({ @@ -68,7 +77,9 @@ class WorkflowRunSelectionContext internal constructor( val status = selectedWfRun?.status if (selectedWfRun != null && status != "completed") { jobsDataProvider?.reload() - logsDataProvider?.reload() + } + if(selectedJob != null && selectedJob?.status != "completed") { + logDataProvider?.reload() } }, 1, frequency, TimeUnit.SECONDS) } @@ -80,19 +91,17 @@ class WorkflowRunSelectionContext internal constructor( private fun setNewJobsProvider() { val oldValue = jobDataProviderLoadModel.value val newValue = jobsDataProvider - if (newValue != oldValue) { - jobSelectionHolder.selection = null - } if (oldValue != newValue && newValue != null && oldValue?.url() != newValue.url()) { jobDataProviderLoadModel.value = newValue + jobSelectionHolder.selection = null } } private fun setNewLogProvider() { - val oldValue = logDataProviderLoadModel.value - val newValue = logsDataProvider - if (oldValue != newValue && newValue != null && oldValue?.url() != newValue.url()) { - logDataProviderLoadModel.value = newValue + val oldValue = jobLogDataProviderLoadModel.value + val newValue = logDataProvider + if (oldValue != newValue && oldValue?.url() != newValue?.url()) { + jobLogDataProviderLoadModel.value = newValue } } diff --git a/src/main/kotlin/com/dsoftware/ghmanager/ui/WorkflowToolWindowTabController.kt b/src/main/kotlin/com/dsoftware/ghmanager/ui/WorkflowToolWindowTabController.kt index 627bffc8..21e97133 100644 --- a/src/main/kotlin/com/dsoftware/ghmanager/ui/WorkflowToolWindowTabController.kt +++ b/src/main/kotlin/com/dsoftware/ghmanager/ui/WorkflowToolWindowTabController.kt @@ -127,8 +127,8 @@ class WorkflowToolWindowTabController( private fun createLogPanel(selectedRunContext: WorkflowRunSelectionContext): JComponent { LOG.debug("Create log panel") val model = LogLoadingModelListener( - selectedRunContext.selectedRunDisposable, - selectedRunContext.logDataProviderLoadModel, + selectedRunContext.selectedJobDisposable, + selectedRunContext.jobLogDataProviderLoadModel, selectedRunContext.jobSelectionHolder ) val panel = GHLoadingPanelFactory( diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 356bd64d..9b741f3f 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -63,11 +63,11 @@ + - diff --git a/src/test/kotlin/com/dsoftware/ghmanager/GitHubActionsManagerBaseTest.kt b/src/test/kotlin/com/dsoftware/ghmanager/GitHubActionsManagerBaseTest.kt index d3ad0177..868ca1af 100644 --- a/src/test/kotlin/com/dsoftware/ghmanager/GitHubActionsManagerBaseTest.kt +++ b/src/test/kotlin/com/dsoftware/ghmanager/GitHubActionsManagerBaseTest.kt @@ -10,7 +10,6 @@ import com.intellij.testFramework.fixtures.BasePlatformTestCase import com.intellij.testFramework.registerServiceInstance import com.intellij.toolWindow.ToolWindowHeadlessManagerImpl import com.intellij.util.concurrency.annotations.RequiresEdt -import io.mockk.Matcher import io.mockk.every import io.mockk.mockk import kotlinx.coroutines.flow.MutableStateFlow @@ -26,7 +25,6 @@ abstract class GitHubActionsManagerBaseTest : BasePlatformTestCase() { private val host: GithubServerPath = GithubServerPath.from("github.com") protected lateinit var factory: GhActionsToolWindowFactory protected lateinit var toolWindow: ToolWindow - override fun setUp() { super.setUp() factory = GhActionsToolWindowFactory() diff --git a/src/test/kotlin/com/dsoftware/ghmanager/TestGetJobLogRequest.kt b/src/test/kotlin/com/dsoftware/ghmanager/TestGetJobLogRequest.kt new file mode 100644 index 00000000..61464742 --- /dev/null +++ b/src/test/kotlin/com/dsoftware/ghmanager/TestGetJobLogRequest.kt @@ -0,0 +1,70 @@ +package com.dsoftware.ghmanager + +import com.dsoftware.ghmanager.api.GetJobLogRequest +import com.dsoftware.ghmanager.api.model.Job +import com.dsoftware.ghmanager.api.model.JobStep +import com.dsoftware.ghmanager.api.model.WorkflowRunJobs +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.databind.PropertyNamingStrategies +import com.fasterxml.jackson.module.kotlin.readValue +import com.fasterxml.jackson.module.kotlin.registerKotlinModule +import com.jetbrains.rd.util.Date +import junit.framework.TestCase + + + +class TestGetJobLogRequest : TestCase() { + private val mapper = ObjectMapper().registerKotlinModule() + + override fun setUp() { + super.setUp() + mapper.setPropertyNamingStrategy(PropertyNamingStrategies.SNAKE_CASE); + } + + fun testGetJobLogRequest() { + // arrange + val logContent = TestGetJobLogRequest::class.java.getResource("/wf-run-single-job.log")!!.readText() + val wfJobsJson = TestGetJobLogRequest::class.java.getResource("/wf-run-jobs.json")!!.readText() + val wfJobs: WorkflowRunJobs = mapper.readValue(wfJobsJson) + val job = wfJobs.jobs.first() + + //act + val jobLog = GetJobLogRequest(job).extractLogByStep(logContent.byteInputStream()) + + //assert + val jobLogLinesCount = jobLog.map { it.key to it.value.split("\n").size }.toMap() + assertTrue(jobLogLinesCount == mapOf((1 to 33), (2 to 21), (3 to 834), (4 to 813), (6 to 5), (8 to 15))) + } + + fun testStepsWithRightColor() { + // arrange + val job = createJob() + .withStep(number = 1, conclusion = "success") + .withStep(number = 2, conclusion = "skipped") + .withStep(number = 3, conclusion = "failure") + + //act + val log = GetJobLogRequest(job).extractJobLogFromStream("".byteInputStream()) + + //assert + + assertTrue(log.contains("[32m---- Step 1: step 1 ----")) + assertTrue(log.contains("[37m---- Step 2: step 2 (skipped) ----")) + assertTrue(log.contains("[31m---- Step 3: step 3 (failed) ----")) + } + + fun testBadLogStructure() { + // arrange + val wfJobsJson = TestGetJobLogRequest::class.java.getResource("/wf-run-jobs.json")!!.readText() + val wfJobs: WorkflowRunJobs = mapper.readValue(wfJobsJson) + val job = wfJobs.jobs.first() + val line="2024-02-11T18:09:51.DDDDDDDZ LTS\n" + //act + val log = GetJobLogRequest(job).extractJobLogFromStream(line.byteInputStream()) + + //assert + assertTrue(log.contains(line)) + + } + +} \ No newline at end of file diff --git a/src/test/kotlin/com/dsoftware/ghmanager/TestTools.kt b/src/test/kotlin/com/dsoftware/ghmanager/TestTools.kt new file mode 100644 index 00000000..537daced --- /dev/null +++ b/src/test/kotlin/com/dsoftware/ghmanager/TestTools.kt @@ -0,0 +1,49 @@ +package com.dsoftware.ghmanager + +import com.dsoftware.ghmanager.api.model.Job +import com.dsoftware.ghmanager.api.model.JobStep +import java.util.Date + +fun Job.withStep(number: Int, conclusion: String, startedAt: Date = Date(), completedAt: Date = Date()): Job { + val jobStep = JobStep( + number = number, + name = "step $number", + status = "completed", + conclusion = conclusion, + startedAt = startedAt, + completedAt = completedAt + ) + return this.copy(steps = (this.steps ?: emptyList()).plus(jobStep)) +} + +fun createJob( + id: Long = 21454796844, runId: Long = 7863783013, + owner: String = "cunla", + repo: String = "fakeredis-py" +): Job { + return Job( + id = id, + runId = runId, + workflowName = "Push on master", + headBranch = "master", + runUrl = "https://api.github.com/repos/$owner/$repo/actions/runs/$runId", + runAttempt = 1, + nodeId = "CR_kwDOHLrRQs8AAAAE_s44LA", + headSha = "a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1", + url = "https://api.github.com/repos/$owner/$repo/actions/jobs/$id", + htmlUrl = "https://github.com/$owner/$repo/actions/runs/$runId/job/$id", + status = "completed", + conclusion = "success", + createdAt = Date(), + startedAt = Date(), + completedAt = Date(), + name = "Analyze (python)", + steps = mutableListOf(), + checkRunUrl = "https://api.github.com/repos/$owner/$repo/check-runs/21454796844", + labels = arrayOf("ubuntu-latest"), + runnerId = 9, + runnerName = "GitHub Actions 9", + runnerGroupId = 2, + runnerGroupName = "GitHub Actions", + ) +} \ No newline at end of file diff --git a/src/test/resources/job.json b/src/test/resources/job.json new file mode 100644 index 00000000..e195f1bc --- /dev/null +++ b/src/test/resources/job.json @@ -0,0 +1,92 @@ +{ + "id": 21454796844, + "run_id": 7863783013, + "workflow_name": "Push on master", + "head_branch": "master", + "run_url": "https://api.github.com/repos/cunla/fakeredis-py/actions/runs/7863783013", + "run_attempt": 1, + "node_id": "CR_kwDOHLrRQs8AAAAE_s44LA", + "head_sha": "a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1", + "url": "https://api.github.com/repos/cunla/fakeredis-py/actions/jobs/21454796844", + "html_url": "https://github.com/cunla/fakeredis-py/actions/runs/7863783013/job/21454796844", + "status": "completed", + "conclusion": "success", + "created_at": "2024-02-11T18:09:46Z", + "started_at": "2024-02-11T18:09:52Z", + "completed_at": "2024-02-11T18:11:49Z", + "name": "Analyze (python)", + "steps": [ + { + "name": "Set up job", + "status": "completed", + "conclusion": "success", + "number": 1, + "started_at": "2024-02-11T18:09:51.000Z", + "completed_at": "2024-02-11T18:09:55.000Z" + }, + { + "name": "Checkout repository", + "status": "completed", + "conclusion": "success", + "number": 2, + "started_at": "2024-02-11T18:09:55.000Z", + "completed_at": "2024-02-11T18:09:56.000Z" + }, + { + "name": "Initialize CodeQL", + "status": "completed", + "conclusion": "success", + "number": 3, + "started_at": "2024-02-11T18:09:56.000Z", + "completed_at": "2024-02-11T18:10:09.000Z" + }, + { + "name": "Perform CodeQL Analysis", + "status": "completed", + "conclusion": "success", + "number": 4, + "started_at": "2024-02-11T18:10:09.000Z", + "completed_at": "2024-02-11T18:11:46.000Z" + }, + { + "name": "Post Perform CodeQL Analysis", + "status": "completed", + "conclusion": "success", + "number": 6, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + }, + { + "name": "Post Initialize CodeQL", + "status": "completed", + "conclusion": "success", + "number": 7, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + }, + { + "name": "Post Checkout repository", + "status": "completed", + "conclusion": "success", + "number": 8, + "started_at": "2024-02-11T18:11:49.000Z", + "completed_at": "2024-02-11T18:11:49.000Z" + }, + { + "name": "Complete job", + "status": "completed", + "conclusion": "success", + "number": 9, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + } + ], + "check_run_url": "https://api.github.com/repos/cunla/fakeredis-py/check-runs/21454796844", + "labels": [ + "ubuntu-latest" + ], + "runner_id": 9, + "runner_name": "GitHub Actions 9", + "runner_group_id": 2, + "runner_group_name": "GitHub Actions" +} \ No newline at end of file diff --git a/src/test/resources/wf-run-jobs.json b/src/test/resources/wf-run-jobs.json index 0df91993..65cc3516 100644 --- a/src/test/resources/wf-run-jobs.json +++ b/src/test/resources/wf-run-jobs.json @@ -1,224 +1,97 @@ { - "id": 7792954290, - "name": "Build", - "node_id": "WFR_kwLOHYewBs8AAAAB0H8Lsg", - "head_branch": "master", - "head_sha": "198fcd73a1808fb5949e3a31c47b97a81bab9426", - "path": ".github/workflows/build.yml", - "display_title": "fix:improve tests", - "run_number": 297, - "event": "push", - "status": "completed", - "conclusion": "success", - "workflow_id": 26673417, - "check_suite_id": 20472994453, - "check_suite_node_id": "CS_kwDOHYewBs8AAAAExEkalQ", - "url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290", - "html_url": "https://github.com/cunla/ghactions-manager/actions/runs/7792954290", - "pull_requests": [ - - ], - "created_at": "2024-02-06T00:47:31Z", - "updated_at": "2024-02-06T00:51:26Z", - "actor": { - "login": "cunla", - "id": 3419721, - "node_id": "MDQ6VXNlcjM0MTk3MjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/3419721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cunla", - "html_url": "https://github.com/cunla", - "followers_url": "https://api.github.com/users/cunla/followers", - "following_url": "https://api.github.com/users/cunla/following{/other_user}", - "gists_url": "https://api.github.com/users/cunla/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cunla/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cunla/subscriptions", - "organizations_url": "https://api.github.com/users/cunla/orgs", - "repos_url": "https://api.github.com/users/cunla/repos", - "events_url": "https://api.github.com/users/cunla/events{/privacy}", - "received_events_url": "https://api.github.com/users/cunla/received_events", - "type": "User", - "site_admin": false - }, - "run_attempt": 1, - "referenced_workflows": [ - - ], - "run_started_at": "2024-02-06T00:47:31Z", - "triggering_actor": { - "login": "cunla", - "id": 3419721, - "node_id": "MDQ6VXNlcjM0MTk3MjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/3419721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cunla", - "html_url": "https://github.com/cunla", - "followers_url": "https://api.github.com/users/cunla/followers", - "following_url": "https://api.github.com/users/cunla/following{/other_user}", - "gists_url": "https://api.github.com/users/cunla/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cunla/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cunla/subscriptions", - "organizations_url": "https://api.github.com/users/cunla/orgs", - "repos_url": "https://api.github.com/users/cunla/repos", - "events_url": "https://api.github.com/users/cunla/events{/privacy}", - "received_events_url": "https://api.github.com/users/cunla/received_events", - "type": "User", - "site_admin": false - }, - "jobs_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290/jobs", - "logs_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290/logs", - "check_suite_url": "https://api.github.com/repos/cunla/ghactions-manager/check-suites/20472994453", - "artifacts_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290/artifacts", - "cancel_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290/cancel", - "rerun_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/runs/7792954290/rerun", - "previous_attempt_url": null, - "workflow_url": "https://api.github.com/repos/cunla/ghactions-manager/actions/workflows/26673417", - "head_commit": { - "id": "198fcd73a1808fb5949e3a31c47b97a81bab9426", - "tree_id": "05bc84e0106035b67e9bccc7533e38b18ec52fa1", - "message": "fix:improve tests", - "timestamp": "2024-02-06T00:47:26Z", - "author": { - "name": "Daniel M", - "email": "daniel.maruani@gmail.com" - }, - "committer": { - "name": "Daniel M", - "email": "daniel.maruani@gmail.com" + "total_count": 1, + "jobs": [ + { + "id": 21454796844, + "run_id": 7863783013, + "workflow_name": "Push on master", + "head_branch": "master", + "run_url": "https://api.github.com/repos/cunla/fakeredis-py/actions/runs/7863783013", + "run_attempt": 1, + "node_id": "CR_kwDOHLrRQs8AAAAE_s44LA", + "head_sha": "a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1", + "url": "https://api.github.com/repos/cunla/fakeredis-py/actions/jobs/21454796844", + "html_url": "https://github.com/cunla/fakeredis-py/actions/runs/7863783013/job/21454796844", + "status": "completed", + "conclusion": "success", + "created_at": "2024-02-11T18:09:46Z", + "started_at": "2024-02-11T18:09:52Z", + "completed_at": "2024-02-11T18:11:49Z", + "name": "Analyze (python)", + "steps": [ + { + "name": "Set up job", + "status": "completed", + "conclusion": "success", + "number": 1, + "started_at": "2024-02-11T18:09:51.000Z", + "completed_at": "2024-02-11T18:09:55.000Z" + }, + { + "name": "Checkout repository", + "status": "completed", + "conclusion": "success", + "number": 2, + "started_at": "2024-02-11T18:09:55.000Z", + "completed_at": "2024-02-11T18:09:56.000Z" + }, + { + "name": "Initialize CodeQL", + "status": "completed", + "conclusion": "success", + "number": 3, + "started_at": "2024-02-11T18:09:56.000Z", + "completed_at": "2024-02-11T18:10:09.000Z" + }, + { + "name": "Perform CodeQL Analysis", + "status": "completed", + "conclusion": "success", + "number": 4, + "started_at": "2024-02-11T18:10:09.000Z", + "completed_at": "2024-02-11T18:11:46.000Z" + }, + { + "name": "Post Perform CodeQL Analysis", + "status": "completed", + "conclusion": "success", + "number": 6, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + }, + { + "name": "Post Initialize CodeQL", + "status": "completed", + "conclusion": "success", + "number": 7, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + }, + { + "name": "Post Checkout repository", + "status": "completed", + "conclusion": "success", + "number": 8, + "started_at": "2024-02-11T18:11:49.000Z", + "completed_at": "2024-02-11T18:11:49.000Z" + }, + { + "name": "Complete job", + "status": "completed", + "conclusion": "success", + "number": 9, + "started_at": "2024-02-11T18:11:47.000Z", + "completed_at": "2024-02-11T18:11:47.000Z" + } + ], + "check_run_url": "https://api.github.com/repos/cunla/fakeredis-py/check-runs/21454796844", + "labels": [ + "ubuntu-latest" + ], + "runner_id": 9, + "runner_name": "GitHub Actions 9", + "runner_group_id": 2, + "runner_group_name": "GitHub Actions" } - }, - "repository": { - "id": 495431686, - "node_id": "R_kgDOHYewBg", - "name": "ghactions-manager", - "full_name": "cunla/ghactions-manager", - "private": false, - "owner": { - "login": "cunla", - "id": 3419721, - "node_id": "MDQ6VXNlcjM0MTk3MjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/3419721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cunla", - "html_url": "https://github.com/cunla", - "followers_url": "https://api.github.com/users/cunla/followers", - "following_url": "https://api.github.com/users/cunla/following{/other_user}", - "gists_url": "https://api.github.com/users/cunla/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cunla/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cunla/subscriptions", - "organizations_url": "https://api.github.com/users/cunla/orgs", - "repos_url": "https://api.github.com/users/cunla/repos", - "events_url": "https://api.github.com/users/cunla/events{/privacy}", - "received_events_url": "https://api.github.com/users/cunla/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/cunla/ghactions-manager", - "description": "A plugin to manage GitHub actions from JetBrains IDEs (intellij, pycharm, etc.)", - "fork": false, - "url": "https://api.github.com/repos/cunla/ghactions-manager", - "forks_url": "https://api.github.com/repos/cunla/ghactions-manager/forks", - "keys_url": "https://api.github.com/repos/cunla/ghactions-manager/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cunla/ghactions-manager/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cunla/ghactions-manager/teams", - "hooks_url": "https://api.github.com/repos/cunla/ghactions-manager/hooks", - "issue_events_url": "https://api.github.com/repos/cunla/ghactions-manager/issues/events{/number}", - "events_url": "https://api.github.com/repos/cunla/ghactions-manager/events", - "assignees_url": "https://api.github.com/repos/cunla/ghactions-manager/assignees{/user}", - "branches_url": "https://api.github.com/repos/cunla/ghactions-manager/branches{/branch}", - "tags_url": "https://api.github.com/repos/cunla/ghactions-manager/tags", - "blobs_url": "https://api.github.com/repos/cunla/ghactions-manager/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cunla/ghactions-manager/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cunla/ghactions-manager/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cunla/ghactions-manager/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cunla/ghactions-manager/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cunla/ghactions-manager/languages", - "stargazers_url": "https://api.github.com/repos/cunla/ghactions-manager/stargazers", - "contributors_url": "https://api.github.com/repos/cunla/ghactions-manager/contributors", - "subscribers_url": "https://api.github.com/repos/cunla/ghactions-manager/subscribers", - "subscription_url": "https://api.github.com/repos/cunla/ghactions-manager/subscription", - "commits_url": "https://api.github.com/repos/cunla/ghactions-manager/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cunla/ghactions-manager/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cunla/ghactions-manager/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cunla/ghactions-manager/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cunla/ghactions-manager/contents/{+path}", - "compare_url": "https://api.github.com/repos/cunla/ghactions-manager/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cunla/ghactions-manager/merges", - "archive_url": "https://api.github.com/repos/cunla/ghactions-manager/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cunla/ghactions-manager/downloads", - "issues_url": "https://api.github.com/repos/cunla/ghactions-manager/issues{/number}", - "pulls_url": "https://api.github.com/repos/cunla/ghactions-manager/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cunla/ghactions-manager/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cunla/ghactions-manager/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cunla/ghactions-manager/labels{/name}", - "releases_url": "https://api.github.com/repos/cunla/ghactions-manager/releases{/id}", - "deployments_url": "https://api.github.com/repos/cunla/ghactions-manager/deployments" - }, - "head_repository": { - "id": 495431686, - "node_id": "R_kgDOHYewBg", - "name": "ghactions-manager", - "full_name": "cunla/ghactions-manager", - "private": false, - "owner": { - "login": "cunla", - "id": 3419721, - "node_id": "MDQ6VXNlcjM0MTk3MjE=", - "avatar_url": "https://avatars.githubusercontent.com/u/3419721?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/cunla", - "html_url": "https://github.com/cunla", - "followers_url": "https://api.github.com/users/cunla/followers", - "following_url": "https://api.github.com/users/cunla/following{/other_user}", - "gists_url": "https://api.github.com/users/cunla/gists{/gist_id}", - "starred_url": "https://api.github.com/users/cunla/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/cunla/subscriptions", - "organizations_url": "https://api.github.com/users/cunla/orgs", - "repos_url": "https://api.github.com/users/cunla/repos", - "events_url": "https://api.github.com/users/cunla/events{/privacy}", - "received_events_url": "https://api.github.com/users/cunla/received_events", - "type": "User", - "site_admin": false - }, - "html_url": "https://github.com/cunla/ghactions-manager", - "description": "A plugin to manage GitHub actions from JetBrains IDEs (intellij, pycharm, etc.)", - "fork": false, - "url": "https://api.github.com/repos/cunla/ghactions-manager", - "forks_url": "https://api.github.com/repos/cunla/ghactions-manager/forks", - "keys_url": "https://api.github.com/repos/cunla/ghactions-manager/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/cunla/ghactions-manager/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/cunla/ghactions-manager/teams", - "hooks_url": "https://api.github.com/repos/cunla/ghactions-manager/hooks", - "issue_events_url": "https://api.github.com/repos/cunla/ghactions-manager/issues/events{/number}", - "events_url": "https://api.github.com/repos/cunla/ghactions-manager/events", - "assignees_url": "https://api.github.com/repos/cunla/ghactions-manager/assignees{/user}", - "branches_url": "https://api.github.com/repos/cunla/ghactions-manager/branches{/branch}", - "tags_url": "https://api.github.com/repos/cunla/ghactions-manager/tags", - "blobs_url": "https://api.github.com/repos/cunla/ghactions-manager/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/cunla/ghactions-manager/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/cunla/ghactions-manager/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/cunla/ghactions-manager/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/cunla/ghactions-manager/statuses/{sha}", - "languages_url": "https://api.github.com/repos/cunla/ghactions-manager/languages", - "stargazers_url": "https://api.github.com/repos/cunla/ghactions-manager/stargazers", - "contributors_url": "https://api.github.com/repos/cunla/ghactions-manager/contributors", - "subscribers_url": "https://api.github.com/repos/cunla/ghactions-manager/subscribers", - "subscription_url": "https://api.github.com/repos/cunla/ghactions-manager/subscription", - "commits_url": "https://api.github.com/repos/cunla/ghactions-manager/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/cunla/ghactions-manager/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/cunla/ghactions-manager/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/cunla/ghactions-manager/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/cunla/ghactions-manager/contents/{+path}", - "compare_url": "https://api.github.com/repos/cunla/ghactions-manager/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/cunla/ghactions-manager/merges", - "archive_url": "https://api.github.com/repos/cunla/ghactions-manager/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/cunla/ghactions-manager/downloads", - "issues_url": "https://api.github.com/repos/cunla/ghactions-manager/issues{/number}", - "pulls_url": "https://api.github.com/repos/cunla/ghactions-manager/pulls{/number}", - "milestones_url": "https://api.github.com/repos/cunla/ghactions-manager/milestones{/number}", - "notifications_url": "https://api.github.com/repos/cunla/ghactions-manager/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/cunla/ghactions-manager/labels{/name}", - "releases_url": "https://api.github.com/repos/cunla/ghactions-manager/releases{/id}", - "deployments_url": "https://api.github.com/repos/cunla/ghactions-manager/deployments" - } + ] } \ No newline at end of file diff --git a/src/test/resources/wf-run-single-job.log b/src/test/resources/wf-run-single-job.log index 05e0a5c2..fa86b062 100644 --- a/src/test/resources/wf-run-single-job.log +++ b/src/test/resources/wf-run-single-job.log @@ -1,1037 +1,1715 @@ -2024-02-06T00:47:32.1617281Z Requested labels: ubuntu-latest -2024-02-06T00:47:32.1617634Z Job defined at: cunla/ghactions-manager/.github/workflows/build.yml@refs/heads/master -2024-02-06T00:47:32.1617790Z Waiting for a runner to pick up this job... -2024-02-06T00:47:32.7317772Z Job is waiting for a hosted runner to come online. -2024-02-06T00:47:35.8275259Z Job is about to start running on the hosted runner: GitHub Actions 5 (hosted) -2024-02-06T00:47:38.6968542Z Current runner version: '2.312.0' -2024-02-06T00:47:38.6990809Z ##[group]Operating System -2024-02-06T00:47:38.6991555Z Ubuntu -2024-02-06T00:47:38.6991864Z 22.04.3 -2024-02-06T00:47:38.6992207Z LTS -2024-02-06T00:47:38.6992611Z ##[endgroup] -2024-02-06T00:47:38.6992952Z ##[group]Runner Image -2024-02-06T00:47:38.6993392Z Image: ubuntu-22.04 -2024-02-06T00:47:38.6993870Z Version: 20240201.1.0 -2024-02-06T00:47:38.6994822Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240201.1/images/ubuntu/Ubuntu2204-Readme.md -2024-02-06T00:47:38.6996294Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240201.1 -2024-02-06T00:47:38.6997436Z ##[endgroup] -2024-02-06T00:47:38.6997854Z ##[group]Runner Image Provisioner -2024-02-06T00:47:38.6998301Z 2.0.341.1 -2024-02-06T00:47:38.6998703Z ##[endgroup] -2024-02-06T00:47:38.7000827Z ##[group]GITHUB_TOKEN Permissions -2024-02-06T00:47:38.7002487Z Actions: write -2024-02-06T00:47:38.7002921Z Checks: write -2024-02-06T00:47:38.7003534Z Contents: write -2024-02-06T00:47:38.7004010Z Deployments: write -2024-02-06T00:47:38.7004422Z Discussions: write -2024-02-06T00:47:38.7004886Z Issues: write -2024-02-06T00:47:38.7005249Z Metadata: read -2024-02-06T00:47:38.7005586Z Packages: write -2024-02-06T00:47:38.7006039Z Pages: write -2024-02-06T00:47:38.7006404Z PullRequests: write -2024-02-06T00:47:38.7006787Z RepositoryProjects: write -2024-02-06T00:47:38.7007319Z SecurityEvents: write -2024-02-06T00:47:38.7007728Z Statuses: write -2024-02-06T00:47:38.7008070Z ##[endgroup] -2024-02-06T00:47:38.7011053Z Secret source: Actions -2024-02-06T00:47:38.7011693Z Prepare workflow directory -2024-02-06T00:47:38.7620431Z Prepare all required actions -2024-02-06T00:47:38.7776814Z Getting action download info -2024-02-06T00:47:39.0244511Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11) -2024-02-06T00:47:39.1375582Z Download action repository 'gradle/wrapper-validation-action@v1.1.0' (SHA:56b90f209b02bf6d1deae490e9ef18b21a389cd4) -2024-02-06T00:47:39.3130445Z Download action repository 'actions/setup-java@v4' (SHA:387ac29b308b003ca37ba93a6cab5eb57c8f5f93) -2024-02-06T00:47:39.5668113Z Download action repository 'actions/upload-artifact@v4' (SHA:5d5d22a31266ced268874388b861e4b58bb5c2f3) -2024-02-06T00:47:39.8272913Z Download action repository 'actions/cache@v4' (SHA:13aacd865c20de90d75de3b17ebe84f7a17d57d2) -2024-02-06T00:47:40.1100784Z Complete job name: Build -2024-02-06T00:47:40.1991636Z ##[group]Run sudo rm -rf /usr/share/dotnet -2024-02-06T00:47:40.1992252Z sudo rm -rf /usr/share/dotnet -2024-02-06T00:47:40.1992753Z sudo rm -rf /usr/local/lib/android -2024-02-06T00:47:40.1993304Z sudo rm -rf /opt/ghc -2024-02-06T00:47:40.2033704Z shell: /usr/bin/bash -e {0} -2024-02-06T00:47:40.2034309Z ##[endgroup] -2024-02-06T00:48:37.3430675Z ##[group]Run actions/checkout@v4 -2024-02-06T00:48:37.3431071Z with: -2024-02-06T00:48:37.3431342Z repository: cunla/ghactions-manager -2024-02-06T00:48:37.3431877Z token: *** -2024-02-06T00:48:37.3432127Z ssh-strict: true -2024-02-06T00:48:37.3432398Z persist-credentials: true -2024-02-06T00:48:37.3432713Z clean: true -2024-02-06T00:48:37.3432981Z sparse-checkout-cone-mode: true -2024-02-06T00:48:37.3433305Z fetch-depth: 1 -2024-02-06T00:48:37.3433546Z fetch-tags: false -2024-02-06T00:48:37.3433792Z show-progress: true -2024-02-06T00:48:37.3434068Z lfs: false -2024-02-06T00:48:37.3434298Z submodules: false -2024-02-06T00:48:37.3434554Z set-safe-directory: true -2024-02-06T00:48:37.3434837Z ##[endgroup] -2024-02-06T00:48:37.5093617Z Syncing repository: cunla/ghactions-manager -2024-02-06T00:48:37.5095201Z ##[group]Getting Git version info -2024-02-06T00:48:37.5095875Z Working directory is '/home/runner/work/ghactions-manager/ghactions-manager' -2024-02-06T00:48:37.5096671Z [command]/usr/bin/git version -2024-02-06T00:48:37.5113845Z git version 2.43.0 -2024-02-06T00:48:37.5139966Z ##[endgroup] -2024-02-06T00:48:37.5229168Z Temporarily overriding HOME='/home/runner/work/_temp/d8966904-584f-4940-9415-1f53de9be910' before making global git config changes -2024-02-06T00:48:37.5231212Z Adding repository directory to the temporary git global config as a safe directory -2024-02-06T00:48:37.5233428Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/ghactions-manager/ghactions-manager -2024-02-06T00:48:37.5267942Z Deleting the contents of '/home/runner/work/ghactions-manager/ghactions-manager' -2024-02-06T00:48:37.5275273Z ##[group]Initializing the repository -2024-02-06T00:48:37.5279802Z [command]/usr/bin/git init /home/runner/work/ghactions-manager/ghactions-manager -2024-02-06T00:48:37.5652925Z hint: Using 'master' as the name for the initial branch. This default branch name -2024-02-06T00:48:37.5654284Z hint: is subject to change. To configure the initial branch name to use in all -2024-02-06T00:48:37.5655530Z hint: of your new repositories, which will suppress this warning, call: -2024-02-06T00:48:37.5656391Z hint: -2024-02-06T00:48:37.5657065Z hint: git config --global init.defaultBranch -2024-02-06T00:48:37.5657594Z hint: -2024-02-06T00:48:37.5658081Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and -2024-02-06T00:48:37.5658863Z hint: 'development'. The just-created branch can be renamed via this command: -2024-02-06T00:48:37.5659412Z hint: -2024-02-06T00:48:37.5659678Z hint: git branch -m -2024-02-06T00:48:37.5666089Z Initialized empty Git repository in /home/runner/work/ghactions-manager/ghactions-manager/.git/ -2024-02-06T00:48:37.5676796Z [command]/usr/bin/git remote add origin https://github.com/cunla/ghactions-manager -2024-02-06T00:48:37.5710168Z ##[endgroup] -2024-02-06T00:48:37.5710652Z ##[group]Disabling automatic garbage collection -2024-02-06T00:48:37.5713998Z [command]/usr/bin/git config --local gc.auto 0 -2024-02-06T00:48:37.5742632Z ##[endgroup] -2024-02-06T00:48:37.5743309Z ##[group]Setting up auth -2024-02-06T00:48:37.5748491Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2024-02-06T00:48:37.5778884Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2024-02-06T00:48:37.6066555Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2024-02-06T00:48:37.6097378Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2024-02-06T00:48:37.6338683Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** -2024-02-06T00:48:37.6374145Z ##[endgroup] -2024-02-06T00:48:37.6375425Z ##[group]Fetching the repository -2024-02-06T00:48:37.6385840Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +198fcd73a1808fb5949e3a31c47b97a81bab9426:refs/remotes/origin/master -2024-02-06T00:48:37.9129706Z From https://github.com/cunla/ghactions-manager -2024-02-06T00:48:37.9130954Z * [new ref] 198fcd73a1808fb5949e3a31c47b97a81bab9426 -> origin/master -2024-02-06T00:48:37.9156761Z ##[endgroup] -2024-02-06T00:48:37.9157656Z ##[group]Determining the checkout info -2024-02-06T00:48:37.9159225Z ##[endgroup] -2024-02-06T00:48:37.9159864Z ##[group]Checking out the ref -2024-02-06T00:48:37.9163951Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master -2024-02-06T00:48:37.9356825Z Reset branch 'master' -2024-02-06T00:48:37.9358765Z branch 'master' set up to track 'origin/master'. -2024-02-06T00:48:37.9366338Z ##[endgroup] -2024-02-06T00:48:37.9407978Z [command]/usr/bin/git log -1 --format='%H' -2024-02-06T00:48:37.9433326Z '198fcd73a1808fb5949e3a31c47b97a81bab9426' -2024-02-06T00:48:37.9580101Z ##[group]Run gradle/wrapper-validation-action@v1.1.0 -2024-02-06T00:48:37.9580564Z with: -2024-02-06T00:48:37.9580811Z min-wrapper-count: 1 -2024-02-06T00:48:37.9581175Z allow-snapshots: false -2024-02-06T00:48:37.9581802Z ##[endgroup] -2024-02-06T00:48:38.8528007Z ✓ Found known Gradle Wrapper JAR files: -2024-02-06T00:48:38.8528819Z ed2c26eba7cfb93cc2b7785d05e534f07b5b48b5e7fc941921cd098628abca58 gradle/wrapper/gradle-wrapper.jar -2024-02-06T00:48:38.8714794Z ##[group]Run actions/setup-java@v4 -2024-02-06T00:48:38.8715146Z with: -2024-02-06T00:48:38.8715371Z distribution: zulu -2024-02-06T00:48:38.8715634Z java-version: 17 -2024-02-06T00:48:38.8715864Z cache: gradle -2024-02-06T00:48:38.8716093Z java-package: jdk -2024-02-06T00:48:38.8716338Z check-latest: false -2024-02-06T00:48:38.8716575Z server-id: github -2024-02-06T00:48:38.8716826Z server-username: GITHUB_ACTOR -2024-02-06T00:48:38.8717691Z server-password: GITHUB_TOKEN -2024-02-06T00:48:38.8718009Z overwrite-settings: true -2024-02-06T00:48:38.8718296Z job-status: success -2024-02-06T00:48:38.8718896Z token: *** -2024-02-06T00:48:38.8719255Z ##[endgroup] -2024-02-06T00:48:39.0568447Z ##[group]Installed distributions -2024-02-06T00:48:39.0594249Z Trying to resolve the latest version from remote -2024-02-06T00:48:39.1376211Z Resolved latest version as 17.0.10+7 -2024-02-06T00:48:39.1376903Z Trying to download... -2024-02-06T00:48:39.1378709Z Downloading Java 17.0.10+7 (Zulu) from https://cdn.azul.com/zulu/bin/zulu17.48.15-ca-jdk17.0.10-linux_x64.tar.gz ... -2024-02-06T00:48:43.2728548Z Extracting Java archive... -2024-02-06T00:48:43.2833139Z [command]/usr/bin/tar xz --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/c8aae08a-fd79-4541-b0fb-97a0b7c1d094 -f /home/runner/work/_temp/96bb97b7-f0b3-4acd-aa7b-4f7ba5301529 -2024-02-06T00:48:46.2386133Z Java 17.0.10+7 was downloaded -2024-02-06T00:48:46.2388965Z Setting Java 17.0.10+7 as the default -2024-02-06T00:48:46.2389914Z Creating toolchains.xml for JDK version 17 from zulu -2024-02-06T00:48:46.2470576Z Writing to /home/runner/.m2/toolchains.xml -2024-02-06T00:48:46.2471197Z -2024-02-06T00:48:46.2471499Z Java configuration: -2024-02-06T00:48:46.2472030Z Distribution: zulu -2024-02-06T00:48:46.2472469Z Version: 17.0.10+7 -2024-02-06T00:48:46.2474671Z Path: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:48:46.2475191Z -2024-02-06T00:48:46.2476368Z ##[endgroup] -2024-02-06T00:48:46.2502280Z Creating settings.xml with server-id: github -2024-02-06T00:48:46.2504284Z Writing to /home/runner/.m2/settings.xml -2024-02-06T00:48:47.3783128Z Received 222298112 of 2772881144 (8.0%), 212.0 MBs/sec -2024-02-06T00:48:48.3794707Z Received 473956352 of 2772881144 (17.1%), 225.9 MBs/sec -2024-02-06T00:48:49.3794476Z Received 717225984 of 2772881144 (25.9%), 227.9 MBs/sec -2024-02-06T00:48:50.3808653Z Received 968884224 of 2772881144 (34.9%), 230.9 MBs/sec -2024-02-06T00:48:51.3806915Z Received 1216348160 of 2772881144 (43.9%), 231.9 MBs/sec -2024-02-06T00:48:52.3807367Z Received 1472200704 of 2772881144 (53.1%), 233.9 MBs/sec -2024-02-06T00:48:53.3806784Z Received 1723858944 of 2772881144 (62.2%), 234.8 MBs/sec -2024-02-06T00:48:54.3835675Z Received 1975517184 of 2772881144 (71.2%), 235.4 MBs/sec -2024-02-06T00:48:55.3833024Z Received 2235564032 of 2772881144 (80.6%), 236.8 MBs/sec -2024-02-06T00:48:56.3836305Z Received 2491416576 of 2772881144 (89.8%), 237.5 MBs/sec -2024-02-06T00:48:57.3847678Z Received 2743074816 of 2772881144 (98.9%), 237.7 MBs/sec -2024-02-06T00:48:57.5010830Z Cache Size: ~2644 MB (2772881144 B) -2024-02-06T00:48:57.5149833Z [command]/usr/bin/tar -xf /home/runner/work/_temp/66f36aab-3631-4edb-b87d-0f979f6347e4/cache.tzst -P -C /home/runner/work/ghactions-manager/ghactions-manager --use-compress-program unzstd -2024-02-06T00:48:58.3850738Z Received 2772881144 of 2772881144 (100.0%), 220.3 MBs/sec -2024-02-06T00:49:07.7522814Z Cache restored successfully -2024-02-06T00:49:08.2793022Z Cache restored from key: setup-java-Linux-gradle-5692ce608cf1a87ae7313a2527bf681efc1c5dfa44e5c41df2bc168e5700fa63 -2024-02-06T00:49:08.2955786Z ##[group]Run ./gradlew test -2024-02-06T00:49:08.2956413Z ./gradlew test -2024-02-06T00:49:08.2992654Z shell: /usr/bin/bash -e {0} -2024-02-06T00:49:08.2993370Z env: -2024-02-06T00:49:08.2993880Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:49:08.2994769Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:49:08.2995492Z ##[endgroup] -2024-02-06T00:49:09.3371908Z -2024-02-06T00:49:09.3374573Z Welcome to Gradle 8.5! -2024-02-06T00:49:09.3375400Z -2024-02-06T00:49:09.3378292Z Here are the highlights of this release: -2024-02-06T00:49:09.3380655Z - Support for running on Java 21 -2024-02-06T00:49:09.3382612Z - Faster first use with Kotlin DSL -2024-02-06T00:49:09.3383832Z - Improved error and warning messages -2024-02-06T00:49:09.3384491Z -2024-02-06T00:49:09.3386702Z For more details see https://docs.gradle.org/8.5/release-notes.html -2024-02-06T00:49:09.3387547Z -2024-02-06T00:49:09.4362971Z Starting a Gradle Daemon (subsequent builds will be faster) -2024-02-06T00:49:11.4380612Z Calculating task graph as no cached configuration is available for tasks: test -2024-02-06T00:49:27.6394409Z > Task :checkKotlinGradlePluginConfigurationErrors -2024-02-06T00:49:27.6396449Z > Task :processTestResources NO-SOURCE -2024-02-06T00:49:27.6397496Z > Task :koverFindJar FROM-CACHE -2024-02-06T00:49:27.9372863Z > Task :initializeIntelliJPlugin -2024-02-06T00:49:28.0365716Z > Task :patchPluginXml FROM-CACHE -2024-02-06T00:49:28.0366527Z > Task :verifyPluginConfiguration -2024-02-06T00:49:46.4361893Z > Task :processResources -2024-02-06T00:49:46.4362500Z > Task :compileKotlin -2024-02-06T00:49:46.4365568Z > Task :compileJava NO-SOURCE -2024-02-06T00:49:46.4366137Z > Task :classes -2024-02-06T00:49:46.9362516Z > Task :instrumentCode -2024-02-06T00:49:47.0362615Z > Task :instrumentedJar -2024-02-06T00:49:47.0363511Z > Task :jar -2024-02-06T00:49:47.2372878Z > Task :prepareTestingSandbox -2024-02-06T00:49:49.3363733Z > Task :compileTestKotlin -2024-02-06T00:49:49.3364629Z > Task :compileTestJava NO-SOURCE -2024-02-06T00:49:49.3365229Z > Task :testClasses UP-TO-DATE -2024-02-06T00:49:49.4361962Z > Task :instrumentTestCode -2024-02-06T00:49:49.4363710Z > Task :classpathIndexCleanup -2024-02-06T00:49:51.4361262Z -2024-02-06T00:49:51.4362388Z > Task :test -2024-02-06T00:49:51.4363991Z CompileCommand: exclude com/intellij/openapi/vfs/impl/FilePartNodeRoot.trieDescend bool exclude = true -2024-02-06T00:50:06.7205121Z -2024-02-06T00:50:06.7213467Z BUILD SUCCESSFUL in 57s -2024-02-06T00:50:06.7214129Z 15 actionable tasks: 13 executed, 2 from cache -2024-02-06T00:50:06.7223734Z Configuration cache entry stored. -2024-02-06T00:50:07.0440156Z ##[group]Run ./gradlew runPluginVerifier -2024-02-06T00:50:07.0440598Z ./gradlew runPluginVerifier -2024-02-06T00:50:07.0465988Z shell: /usr/bin/bash -e {0} -2024-02-06T00:50:07.0466311Z env: -2024-02-06T00:50:07.0466661Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:07.0467220Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:07.0467679Z ##[endgroup] -2024-02-06T00:50:07.7321188Z Calculating task graph as no cached configuration is available for tasks: runPluginVerifier -2024-02-06T00:50:10.7389130Z > Task :initializeIntelliJPlugin SKIPPED -2024-02-06T00:50:10.7390027Z > Task :checkKotlinGradlePluginConfigurationErrors -2024-02-06T00:50:10.7391133Z > Task :patchPluginXml UP-TO-DATE -2024-02-06T00:50:10.7391698Z > Task :verifyPluginConfiguration -2024-02-06T00:50:10.7392337Z > Task :processResources UP-TO-DATE -2024-02-06T00:50:10.8312639Z > Task :compileKotlin UP-TO-DATE -2024-02-06T00:50:10.8313959Z > Task :compileJava NO-SOURCE -2024-02-06T00:50:10.8314978Z > Task :classes UP-TO-DATE -2024-02-06T00:50:10.8315881Z > Task :instrumentCode UP-TO-DATE -2024-02-06T00:50:10.8316841Z > Task :instrumentedJar UP-TO-DATE -2024-02-06T00:50:10.8318395Z > Task :jar UP-TO-DATE -2024-02-06T00:50:10.8319785Z > Task :downloadIdeaProductReleasesXml -2024-02-06T00:50:10.8321670Z > Task :compileTestKotlin UP-TO-DATE -2024-02-06T00:50:10.8323097Z > Task :downloadAndroidStudioProductReleasesXml -2024-02-06T00:50:10.8324158Z > Task :classpathIndexCleanup -2024-02-06T00:50:10.9311952Z > Task :prepareSandbox -2024-02-06T00:50:11.4311444Z > Task :verifyPlugin -2024-02-06T00:50:11.5311793Z > Task :listProductsReleases -2024-02-06T00:50:12.9310848Z -2024-02-06T00:50:12.9311869Z > Task :buildSearchableOptions -2024-02-06T00:50:12.9313365Z CompileCommand: exclude com/intellij/openapi/vfs/impl/FilePartNodeRoot.trieDescend bool exclude = true -2024-02-06T00:50:12.9316761Z 2024-02-06 00:50:12,432 [ 602] WARN - #c.i.s.ComponentManagerImpl - `preload=true` must be used only for core services (service=com.intellij.ae.database.core.baseEvents.fus.AddStatisticsEventLogListenerTemporary, plugin=com.jetbrains.ae.database) -2024-02-06T00:50:12.9320823Z 2024-02-06 00:50:12,433 [ 603] WARN - #c.i.s.ComponentManagerImpl - `preload=true` must be used only for core services (service=com.jetbrains.rdserver.statistics.BackendStatisticsManager, plugin=com.jetbrains.codeWithMe) -2024-02-06T00:50:12.9324025Z 2024-02-06 00:50:12,894 [ 1064] WARN - #c.i.s.ComponentManagerImpl - com.intellij.psi.search.FilenameIndex initializer requests com.intellij.ide.plugins.PluginUtil instance -2024-02-06T00:50:14.3312708Z 2024-02-06 00:50:14,304 [ 2474] WARN - #c.i.s.ComponentManagerImpl - org.zmlx.hg4idea.provider.HgChangeProvider initializer requests com.intellij.openapi.vcs.FileStatusFactory instance -2024-02-06T00:50:15.3313439Z 2024-02-06 00:50:15,286 [ 3456] WARN - java.util.prefs - Prefs file removed in background /home/runner/.java/.userPrefs/prefs.xml -2024-02-06T00:50:16.6314762Z 2024-02-06 00:50:16,547 [ 4717] WARN - #c.i.s.ComponentManagerImpl - com.intellij.codeInsight.daemon.LineMarkerProviders initializer requests com.intellij.codeInsight.daemon.LineMarkerProviders instance -2024-02-06T00:50:18.3313768Z 2024-02-06 00:50:18,225 [ 6395] WARN - #c.i.s.ComponentManagerImpl - com.intellij.psi.LanguageSubstitutors initializer requests com.intellij.psi.LanguageSubstitutors instance -2024-02-06T00:50:20.5314228Z 2024-02-06 00:50:20,473 [ 8643] WARN - #c.i.s.ComponentManagerImpl - com.intellij.psi.codeStyle.CodeStyleSettingsCustomizable initializer requests com.intellij.util.LocaleSensitiveApplicationCacheService instance -2024-02-06T00:50:22.3313506Z 2024-02-06 00:50:22,267 [ 10437] WARN - #c.i.u.j.JBCefApp - JCEF is manually disabled in headless env via 'ide.browser.jcef.headless.enabled=false' -2024-02-06T00:50:22.8373803Z 2024-02-06 00:50:22,780 [ 10950] SEVERE - #c.i.u.u.EdtInvocationManager - null -2024-02-06T00:50:22.8375785Z java.lang.reflect.InvocationTargetException -2024-02-06T00:50:22.8377129Z at java.desktop/java.awt.EventQueue.invokeAndWait(EventQueue.java:1393) -2024-02-06T00:50:22.8483986Z at java.desktop/java.awt.EventQueue.invokeAndWait(EventQueue.java:1368) -2024-02-06T00:50:22.8485931Z at com.intellij.util.ui.EdtInvocationManager$SwingEdtInvocationManager.invokeAndWait(EdtInvocationManager.java:102) -2024-02-06T00:50:22.8487990Z at com.intellij.util.ui.EdtInvocationManager.invokeAndWaitIfNeeded(EdtInvocationManager.java:83) -2024-02-06T00:50:22.8489803Z at com.intellij.ide.ui.search.TraverseUIStarter.startup(TraverseUIStarter.java:111) -2024-02-06T00:50:22.8491408Z at com.intellij.ide.ui.search.TraverseUIStarter.main(TraverseUIStarter.java:89) -2024-02-06T00:50:22.8493323Z at com.intellij.platform.ide.bootstrap.ApplicationLoader.executeApplicationStarter$lambda$1(ApplicationLoader.kt:288) -2024-02-06T00:50:22.8495394Z at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) -2024-02-06T00:50:22.8498248Z at java.base/java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) -2024-02-06T00:50:22.8499685Z at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) -2024-02-06T00:50:22.8501084Z at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) -2024-02-06T00:50:22.8502514Z at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) -2024-02-06T00:50:22.8503830Z at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) -2024-02-06T00:50:22.8639782Z at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) -2024-02-06T00:50:22.8643033Z Caused by: com.intellij.diagnostic.PluginException: Cannot load class kotlinx.coroutines.flow.StateFlow ( -2024-02-06T00:50:22.8648167Z error: loader constraint violation: loader com.intellij.ide.plugins.cl.PluginClassLoader @6e649ed0 wants to load interface kotlinx.coroutines.flow.StateFlow. A different interface with the same name was previously loaded by com.intellij.util.lang.PathClassLoader @35851384. (kotlinx.coroutines.flow.StateFlow is in unnamed module of loader com.intellij.util.lang.PathClassLoader @35851384), -2024-02-06T00:50:22.8654645Z classLoader=PluginClassLoader(plugin=PluginDescriptor(name=GitHub Actions Manager, id=com.dsoftware.ghtoolbar, descriptorPath=plugin.xml, path=~/work/ghactions-manager/ghactions-manager/build/idea-sandbox/plugins/github-actions-manager, version=1.15.3, package=null, isBundled=false), packagePrefix=null, state=active) -2024-02-06T00:50:22.8657728Z ) -2024-02-06T00:50:22.8658757Z at com.intellij.ide.plugins.cl.PluginClassLoader.loadClassInsideSelf(PluginClassLoader.kt:331) -2024-02-06T00:50:22.8660294Z at com.intellij.ide.plugins.cl.PluginClassLoader.tryLoadingClass(PluginClassLoader.kt:178) -2024-02-06T00:50:22.8661898Z at com.intellij.ide.plugins.cl.PluginClassLoader.loadClass(PluginClassLoader.kt:151) -2024-02-06T00:50:22.8663120Z at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:525) -2024-02-06T00:50:22.8666757Z at com.dsoftware.ghmanager.ui.settings.GhActionsManagerConfigurable.createPanel(GhActionsManagerConfigurable.kt:36) -2024-02-06T00:50:22.8669744Z at com.intellij.openapi.options.DslConfigurableBase$panel$1.compute(BoundConfigurable.kt:35) -2024-02-06T00:50:22.8672735Z at com.intellij.openapi.options.DslConfigurableBase$panel$1.compute(BoundConfigurable.kt:30) -2024-02-06T00:50:22.8675349Z at com.intellij.openapi.util.ClearableLazyValue.getValue(ClearableLazyValue.java:43) -2024-02-06T00:50:22.8678196Z at com.intellij.openapi.options.DslConfigurableBase.createComponent(BoundConfigurable.kt:43) -2024-02-06T00:50:22.8681085Z at com.intellij.openapi.options.ex.ConfigurableWrapper.createComponent(ConfigurableWrapper.java:181) -2024-02-06T00:50:22.8683868Z at com.intellij.ide.ui.search.SearchUtil.processConfigurables(SearchUtil.java:72) -2024-02-06T00:50:22.8686765Z at com.intellij.ide.ui.search.TraverseUIStarter.lambda$startup$0(TraverseUIStarter.java:116) -2024-02-06T00:50:22.8689615Z at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:308) -2024-02-06T00:50:22.8692012Z at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:792) -2024-02-06T00:50:22.8694163Z at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) -2024-02-06T00:50:22.8696161Z at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) -2024-02-06T00:50:22.8698483Z at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) -2024-02-06T00:50:22.8701598Z at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) -2024-02-06T00:50:22.8704376Z at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:761) -2024-02-06T00:50:22.8706800Z at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:695) -2024-02-06T00:50:22.8709342Z at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$12(IdeEventQueue.kt:589) -2024-02-06T00:50:22.8712370Z at com.intellij.openapi.application.impl.RwLockHolder.runWithoutImplicitRead(RwLockHolder.kt:44) -2024-02-06T00:50:22.8714945Z at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:589) -2024-02-06T00:50:22.8717602Z at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:72) -2024-02-06T00:50:22.8720215Z at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:351) -2024-02-06T00:50:22.8723048Z at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:349) -2024-02-06T00:50:22.8725713Z at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1014) -2024-02-06T00:50:22.8728761Z at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:106) -2024-02-06T00:50:22.8731431Z at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1014) -2024-02-06T00:50:22.8733964Z at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:349) -2024-02-06T00:50:22.8736887Z at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:848) -2024-02-06T00:50:22.8739752Z at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:391) -2024-02-06T00:50:22.8742296Z at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) -2024-02-06T00:50:22.8747015Z at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) -2024-02-06T00:50:22.8748718Z at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) -2024-02-06T00:50:22.8750339Z at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) -2024-02-06T00:50:22.8751820Z at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) -2024-02-06T00:50:22.8753240Z at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) -2024-02-06T00:50:22.9325361Z Caused by: java.lang.LinkageError: loader constraint violation: loader com.intellij.ide.plugins.cl.PluginClassLoader @6e649ed0 wants to load interface kotlinx.coroutines.flow.StateFlow. A different interface with the same name was previously loaded by com.intellij.util.lang.PathClassLoader @35851384. (kotlinx.coroutines.flow.StateFlow is in unnamed module of loader com.intellij.util.lang.PathClassLoader @35851384) -2024-02-06T00:50:22.9329377Z at java.base/java.lang.ClassLoader.defineClass2(Native Method) -2024-02-06T00:50:22.9330462Z at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1108) -2024-02-06T00:50:22.9331750Z at com.intellij.util.lang.UrlClassLoader.consumeClassData(UrlClassLoader.java:289) -2024-02-06T00:50:22.9333146Z at com.intellij.util.lang.ZipResourceFile.findClass(ZipResourceFile.java:113) -2024-02-06T00:50:22.9334331Z at com.intellij.util.lang.JarLoader.findClass(JarLoader.java:58) -2024-02-06T00:50:22.9335511Z at com.intellij.util.lang.ClassPath.findClassInLoader(ClassPath.java:240) -2024-02-06T00:50:22.9337242Z at com.intellij.util.lang.ClassPath.findClass(ClassPath.java:190) -2024-02-06T00:50:22.9338615Z at com.intellij.ide.plugins.cl.PluginClassLoader.loadClassInsideSelf(PluginClassLoader.kt:326) -2024-02-06T00:50:22.9339745Z ... 37 more -2024-02-06T00:50:22.9341097Z 2024-02-06 00:50:22,794 [ 10964] SEVERE - #c.i.u.u.EdtInvocationManager - IntelliJ IDEA 2023.3.3 Build #IC-233.14015.106 -2024-02-06T00:50:22.9343141Z 2024-02-06 00:50:22,794 [ 10964] SEVERE - #c.i.u.u.EdtInvocationManager - JDK: 17.0.9; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. -2024-02-06T00:50:22.9344859Z 2024-02-06 00:50:22,795 [ 10965] SEVERE - #c.i.u.u.EdtInvocationManager - OS: Linux -2024-02-06T00:50:22.9346697Z 2024-02-06 00:50:22,798 [ 10968] SEVERE - #c.i.u.u.EdtInvocationManager - Plugin to blame: GitHub Actions Manager version: 1.15.3 -2024-02-06T00:50:22.9348441Z 2024-02-06 00:50:22,798 [ 10968] SEVERE - #c.i.u.u.EdtInvocationManager - Last Action: -2024-02-06T00:50:22.9349318Z Found 185 configurables -2024-02-06T00:50:24.2351429Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/textmate.jar/search/textmate.jar.searchableOptions.xml -2024-02-06T00:50:24.2354538Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/markdown.jar/search/markdown.jar.searchableOptions.xml -2024-02-06T00:50:24.2358548Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/eclipse.jar/search/eclipse.jar.searchableOptions.xml -2024-02-06T00:50:24.2361241Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/tasks-core.jar/search/tasks-core.jar.searchableOptions.xml -2024-02-06T00:50:24.2364207Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/sh.jar/search/sh.jar.searchableOptions.xml -2024-02-06T00:50:24.2438277Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-coverage.jar/search/java-coverage.jar.searchableOptions.xml -2024-02-06T00:50:24.2441149Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-impl.jar!/search/java-impl.jar!.searchableOptions.xml -2024-02-06T00:50:24.2443824Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/javaFX.jar!/search/javaFX.jar!.searchableOptions.xml -2024-02-06T00:50:24.2446705Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/searchEverywhereMl.jar/search/searchEverywhereMl.jar.searchableOptions.xml -2024-02-06T00:50:24.2449695Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/idea-junit.jar!/search/idea-junit.jar!.searchableOptions.xml -2024-02-06T00:50:24.2452491Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/uiDesigner.jar/search/uiDesigner.jar.searchableOptions.xml -2024-02-06T00:50:24.2455240Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/javaFX.jar/search/javaFX.jar.searchableOptions.xml -2024-02-06T00:50:24.2457818Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/dev.jar/search/dev.jar.searchableOptions.xml -2024-02-06T00:50:24.2460362Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/space.jar/search/space.jar.searchableOptions.xml -2024-02-06T00:50:24.2463238Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/cwm-plugin-terminal.jar/search/cwm-plugin-terminal.jar.searchableOptions.xml -2024-02-06T00:50:24.2466172Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-svn.jar/search/vcs-svn.jar.searchableOptions.xml -2024-02-06T00:50:24.2469014Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/byteCodeViewer.jar/search/byteCodeViewer.jar.searchableOptions.xml -2024-02-06T00:50:24.2472221Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/testng-plugin.jar!/search/testng-plugin.jar!.searchableOptions.xml -2024-02-06T00:50:24.2475113Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/marketplace.jar/search/marketplace.jar.searchableOptions.xml -2024-02-06T00:50:24.2478080Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/maven.jar/search/maven.jar.searchableOptions.xml -2024-02-06T00:50:24.2480810Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/copyright.jar/search/copyright.jar.searchableOptions.xml -2024-02-06T00:50:24.2504732Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/maven.jar!/search/maven.jar!.searchableOptions.xml -2024-02-06T00:50:24.2508093Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/instrumented-ghactions-manager-1.15.3.jar/search/instrumented-ghactions-manager-1.15.3.jar.searchableOptions.xml -2024-02-06T00:50:24.2511268Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/Groovy.jar/search/Groovy.jar.searchableOptions.xml -2024-02-06T00:50:24.2513775Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/terminal.jar/search/terminal.jar.searchableOptions.xml -2024-02-06T00:50:24.2516628Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/gradle-java.jar/search/gradle-java.jar.searchableOptions.xml -2024-02-06T00:50:24.2523687Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/performanceTesting-async.jar/search/performanceTesting-async.jar.searchableOptions.xml -2024-02-06T00:50:24.2527144Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/properties.jar/search/properties.jar.searchableOptions.xml -2024-02-06T00:50:24.2529927Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-impl.jar/search/java-impl.jar.searchableOptions.xml -2024-02-06T00:50:24.2532727Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/app-client.jar/search/app-client.jar.searchableOptions.xml -2024-02-06T00:50:24.2535424Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/html-tools.jar/search/html-tools.jar.searchableOptions.xml -2024-02-06T00:50:24.2538576Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-perforce.jar/search/vcs-perforce.jar.searchableOptions.xml -2024-02-06T00:50:24.2541722Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-debugger-streams.jar/search/java-debugger-streams.jar.searchableOptions.xml -2024-02-06T00:50:24.2544635Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/gradle.jar/search/gradle.jar.searchableOptions.xml -2024-02-06T00:50:24.2547753Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/testng-plugin.jar/search/testng-plugin.jar.searchableOptions.xml -2024-02-06T00:50:24.2550441Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/grazie.jar/search/grazie.jar.searchableOptions.xml -2024-02-06T00:50:24.2553187Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/qodana.jar/search/qodana.jar.searchableOptions.xml -2024-02-06T00:50:24.2555815Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/app.jar/search/app.jar.searchableOptions.xml -2024-02-06T00:50:24.2559455Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/completionMlRanking.jar/search/completionMlRanking.jar.searchableOptions.xml -2024-02-06T00:50:24.2562555Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-decompiler.jar/search/java-decompiler.jar.searchableOptions.xml -2024-02-06T00:50:24.2565323Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-hg.jar/search/vcs-hg.jar.searchableOptions.xml -2024-02-06T00:50:24.2568714Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/performanceTesting.jar/search/performanceTesting.jar.searchableOptions.xml -2024-02-06T00:50:24.2571771Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-gitlab.jar/search/vcs-gitlab.jar.searchableOptions.xml -2024-02-06T00:50:24.2574619Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/cwm-common.jar/search/cwm-common.jar.searchableOptions.xml -2024-02-06T00:50:24.2577472Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/java-i18n.jar/search/java-i18n.jar.searchableOptions.xml -2024-02-06T00:50:24.2580583Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/Groovy.jar!/search/Groovy.jar!.searchableOptions.xml -2024-02-06T00:50:24.2583424Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/emojipicker.jar/search/emojipicker.jar.searchableOptions.xml -2024-02-06T00:50:24.2586156Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/toml.jar/search/toml.jar.searchableOptions.xml -2024-02-06T00:50:24.2589339Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/platform-ijent-impl.jar/search/platform-ijent-impl.jar.searchableOptions.xml -2024-02-06T00:50:24.2592804Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/idea-junit.jar/search/idea-junit.jar.searchableOptions.xml -2024-02-06T00:50:24.2595476Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/yaml.jar/search/yaml.jar.searchableOptions.xml -2024-02-06T00:50:24.2598524Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/packageChecker.jar/search/packageChecker.jar.searchableOptions.xml -2024-02-06T00:50:24.2602037Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/platform-tracing-ide.jar/search/platform-tracing-ide.jar.searchableOptions.xml -2024-02-06T00:50:24.2605188Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/editorconfig.jar/search/editorconfig.jar.searchableOptions.xml -2024-02-06T00:50:24.3313157Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-github.jar/search/vcs-github.jar.searchableOptions.xml -2024-02-06T00:50:24.3316817Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/platform-images.jar/search/platform-images.jar.searchableOptions.xml -2024-02-06T00:50:24.3319829Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/vcs-git.jar/search/vcs-git.jar.searchableOptions.xml -2024-02-06T00:50:24.3321950Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/kotlin-plugin.jar/search/kotlin-plugin.jar.searchableOptions.xml -2024-02-06T00:50:24.3323673Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/modules.jar/search/modules.jar.searchableOptions.xml -2024-02-06T00:50:24.3325415Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/indexing-shared.jar/search/indexing-shared.jar.searchableOptions.xml -2024-02-06T00:50:24.3327405Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/featuresTrainer.jar/search/featuresTrainer.jar.searchableOptions.xml -2024-02-06T00:50:24.3329030Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/kotlin-plugin.jar!/search/kotlin-plugin.jar!.searchableOptions.xml -2024-02-06T00:50:24.3330549Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/cwm-host.jar/search/cwm-host.jar.searchableOptions.xml -2024-02-06T00:50:24.3332160Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/gradle-java-maven.jar/search/gradle-java-maven.jar.searchableOptions.xml -2024-02-06T00:50:24.3333786Z Output written to /home/runner/work/ghactions-manager/ghactions-manager/build/searchableOptions/settingsSync.jar/search/settingsSync.jar.searchableOptions.xml -2024-02-06T00:50:24.3334709Z Searchable options index builder completed -2024-02-06T00:50:24.8311863Z -2024-02-06T00:50:24.8312990Z > Task :jarSearchableOptions FROM-CACHE -2024-02-06T00:50:25.3311144Z > Task :buildPlugin -2024-02-06T00:50:37.8312252Z -2024-02-06T00:50:37.8312864Z > Task :runPluginVerifier -2024-02-06T00:50:37.8313808Z Starting the IntelliJ Plugin Verifier 1.307 -2024-02-06T00:50:37.9312319Z Verification reports directory: /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier -2024-02-06T00:50:38.4313243Z 2024-02-06T00:50:38 [main] INFO verification - Reading IDE /home/runner/.cache/pluginVerifier/ides/IC-233.14015.23 -2024-02-06T00:50:38.4315301Z 2024-02-06T00:50:38 [main] INFO c.j.p.options.OptionsParser - Reading IDE from /home/runner/.cache/pluginVerifier/ides/IC-233.14015.23 -2024-02-06T00:50:38.4318885Z 2024-02-06T00:50:38 [main] INFO c.j.p.options.OptionsParser - Using Java runtime from /home/runner/.gradle/caches/modules-2/files-2.1/com.jetbrains/jbre/jbr_jcef-17.0.9-linux-x64-b1087.11/extracted/jbr_jcef-17.0.9-linux-x64-b1087.11 -2024-02-06T00:50:46.1312702Z 2024-02-06T00:50:46 [main] INFO verification - Reading plugin to check from /home/runner/work/ghactions-manager/ghactions-manager/build/distributions/github-actions-manager-1.15.3.zip -2024-02-06T00:50:47.5312343Z 2024-02-06T00:50:47 [main] INFO verification - Task check-plugin parameters: -2024-02-06T00:50:47.5313559Z Scheduled verifications (1): -2024-02-06T00:50:47.5314584Z com.dsoftware.ghtoolbar:1.15.3 against IC-233.14015.23 -2024-02-06T00:50:47.5315287Z -2024-02-06T00:50:50.5312794Z 2024-02-06T00:50:50 [main] INFO verification - Finished 1 of 1 verifications (in 2.9 s): IC-233.14015.23 against com.dsoftware.ghtoolbar:1.15.3: Compatible. 142 usages of experimental API -2024-02-06T00:50:50.5316427Z Plugin com.dsoftware.ghtoolbar:1.15.3 against IC-233.14015.23: Compatible. 142 usages of experimental API -2024-02-06T00:50:50.5318102Z Experimental API usages (142): -2024-02-06T00:50:50.5319814Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.create(CoroutineScope) invocation -2024-02-06T00:50:50.5335025Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.create(kotlinx.coroutines.CoroutineScope viewScope) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createWfRunsFiltersPanel(CoroutineScope) : JComponent. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5339100Z #Experimental API class com.intellij.collaboration.ui.SingleValueModel reference -2024-02-06T00:50:50.5342388Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.JobListComponent.Companion.createJobsListComponent(SingleValueModel, WorkflowRunSelectionContext, boolean) : Pair. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5348710Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.(CheckedDisposable, Project, GithubAccount, SingleRunDataLoader, WorkflowRunListLoader, GHGitRepositoryMapping, GithubApiRequestExecutor, WorkflowRunListSelectionHolder, JobListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5353996Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.setLogValue() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5358051Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.setValue() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5362204Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.logDataProviderLoadModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5366397Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.logModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5370412Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.getLogModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5374956Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.getJobDataProviderLoadModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5379497Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5383837Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.jobsModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5388030Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel$2$1.invoke() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5392715Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel(Project, LogLoadingModelListener, Disposable) : JBPanelWithEmptyText. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5397588Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5401956Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5406309Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.getJobsModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5410815Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.getLogDataProviderLoadModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5415061Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext$2.invoke(String) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5419265Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.jobDataProviderLoadModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5423609Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5426946Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.getLastFilter() is overridden -2024-02-06T00:50:50.5430833Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.getLastFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5434349Z #Experimental API interface com.intellij.collaboration.ui.icon.IconsProvider reference -2024-02-06T00:50:50.5437644Z Experimental API interface com.intellij.collaboration.ui.icon.IconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5440761Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() invocation -2024-02-06T00:50:50.5443741Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5448192Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel$2$1.invoke() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5452577Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5456097Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() invocation -2024-02-06T00:50:50.5460488Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.WorkflowRunListLoaderPanel$1.invokeSuspend(Object) : Object. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5466938Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5471617Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter reference -2024-02-06T00:50:50.5475355Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5480973Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.getQuickFilterTitle(ReviewListQuickFilter) : String. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5485982Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5488058Z #Experimental API constructor com.intellij.collaboration.ui.icon.CachingIconsProvider.(IconsProvider, Function1, int, DefaultConstructorMarker) invocation -2024-02-06T00:50:50.5490811Z Experimental API constructor com.intellij.collaboration.ui.icon.CachingIconsProvider.(com.intellij.collaboration.ui.icon.IconsProvider arg0, kotlin.jvm.functions.Function1 arg1, int arg2, kotlin.jvm.internal.DefaultConstructorMarker arg3) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5493566Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory reference -2024-02-06T00:50:50.5495498Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5497361Z #Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() invocation -2024-02-06T00:50:50.5499245Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$2.afterChange(KProperty, Boolean, Boolean) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5502049Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$1.afterChange(KProperty, Throwable, Throwable) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5504786Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.ListSelectionHolder.special$.inlined.observable$1.afterChange(KProperty, T, T) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5506951Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple reference -2024-02-06T00:50:50.5509428Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5513122Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5516612Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5520306Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5523611Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5526209Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(String, Icon, String, int, DefaultConstructorMarker) invocation -2024-02-06T00:50:50.5529661Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5534282Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5538872Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5543567Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5546621Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue reference -2024-02-06T00:50:50.5548670Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5551500Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.withQuery(ReviewListSearchValue, String) : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5554625Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.getShortText(ReviewListSearchValue) : String. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5557725Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.All.getFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5560683Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.InProgres.getFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5563940Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.getLastFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5566882Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5569868Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.setLastFilter(ReviewListSearchValue) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5571862Z #Experimental API class com.intellij.collaboration.async.CompletableFutureUtil reference -2024-02-06T00:50:50.5573584Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5576267Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5578753Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5581248Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5583853Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5585771Z #Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader reference -2024-02-06T00:50:50.5587745Z Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5590602Z Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5592529Z #Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion reference -2024-02-06T00:50:50.5594401Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5597367Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5600045Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5602144Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel reference -2024-02-06T00:50:50.5604372Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.(WfRunsListPersistentSearchHistory). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5607386Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5609265Z #Experimental API interface com.intellij.collaboration.ui.SimpleEventListener reference -2024-02-06T00:50:50.5611024Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5613765Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.special$.inlined.observable$1.afterChange(KProperty, T, T) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5616766Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.(CheckedDisposable, GithubApiRequestExecutor, RepositoryCoordinates, GhActionsSettingsService, WorkflowRunFilter). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5619652Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5622440Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$1.afterChange(KProperty, Throwable, Throwable) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5625120Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5627480Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.(). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5629956Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$2.afterChange(KProperty, Boolean, Boolean) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5632228Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.load(T, Continuation) is overridden -2024-02-06T00:50:50.5634539Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.load(T arg0, kotlin.coroutines.Continuation arg1) : java.lang.Object is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5637166Z #Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(EventDispatcher, Disposable, Function0) invocation -2024-02-06T00:50:50.5640008Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5644170Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5648246Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5650780Z #Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T) invocation -2024-02-06T00:50:50.5652927Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5655718Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5659477Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.(CheckedDisposable, Project, GithubAccount, SingleRunDataLoader, WorkflowRunListLoader, GHGitRepositoryMapping, GithubApiRequestExecutor, WorkflowRunListSelectionHolder, JobListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5662150Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase reference -2024-02-06T00:50:50.5664152Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5667087Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5669469Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory reference -2024-02-06T00:50:50.5671511Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5674314Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5676243Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T) invocation -2024-02-06T00:50:50.5678091Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.setValue() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5680636Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5683085Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext$2.invoke(String) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5685647Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5688247Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.setLogValue() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5690133Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(Function1) invocation -2024-02-06T00:50:50.5692575Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.ui.panels.JobListComponent.Companion.createJobsListComponent(SingleValueModel, WorkflowRunSelectionContext, boolean) : Pair. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5695901Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5699182Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel(Project, LogLoadingModelListener, Disposable) : JBPanelWithEmptyText. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5702731Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5705047Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation reference -2024-02-06T00:50:50.5707713Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5711122Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5714544Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5718250Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5722013Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5724267Z #Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion access -2024-02-06T00:50:50.5726447Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5729675Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5733057Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5735575Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.successOnEdt$default(CompletableFutureUtil, CompletableFuture, ModalityState, Function1, int, Object) invocation -2024-02-06T00:50:50.5739147Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.successOnEdt$default(com.intellij.collaboration.async.CompletableFutureUtil arg0, java.util.concurrent.CompletableFuture arg1, com.intellij.openapi.application.ModalityState arg2, kotlin.jvm.functions.Function1 arg3, int arg4, java.lang.Object arg5) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5742749Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.setLastFilter(S) is overridden -2024-02-06T00:50:50.5745121Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.setLastFilter(S arg0) : void is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5747710Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.partialState(MutableStateFlow, Function1, Function2) invocation -2024-02-06T00:50:50.5751089Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.partialState(kotlinx.coroutines.flow.MutableStateFlow $this$partialState, kotlin.jvm.functions.Function1 getter, kotlin.jvm.functions.Function2 updater) : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5754238Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.(MutableStateFlow) invocation -2024-02-06T00:50:50.5756737Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.(kotlinx.coroutines.flow.MutableStateFlow state) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5759517Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(ProgressManager, ProgressIndicator, Function1) invocation -2024-02-06T00:50:50.5762621Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5767268Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5771896Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5775141Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() is overridden -2024-02-06T00:50:50.5777269Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.InProgres. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5780099Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.All. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5782036Z #Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE access -2024-02-06T00:50:50.5784030Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5787141Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5790507Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5793796Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5797083Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5799084Z #Experimental API class com.intellij.collaboration.ui.icon.AsyncImageIconsProvider reference -2024-02-06T00:50:50.5800878Z Experimental API class com.intellij.collaboration.ui.icon.AsyncImageIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5802994Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.postProcess(Image, Continuation) is overridden -2024-02-06T00:50:50.5805529Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.postProcess(java.awt.Image image, kotlin.coroutines.Continuation $completion) : java.lang.Object is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5808096Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getQuickFilterTitle(Q) is overridden -2024-02-06T00:50:50.5810648Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getQuickFilterTitle(Q arg0) : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5813029Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.getPersistentHistory() is overridden -2024-02-06T00:50:50.5815495Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.getPersistentHistory() : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5817883Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.createBaseIcon(T, int) is overridden -2024-02-06T00:50:50.5820217Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.createBaseIcon(T key, int iconSize) : javax.swing.Icon is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5822767Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.handleOnEdt$default(CompletableFutureUtil, CompletableFuture, ModalityState, Function2, int, Object) invocation -2024-02-06T00:50:50.5826109Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.handleOnEdt$default(com.intellij.collaboration.async.CompletableFutureUtil arg0, java.util.concurrent.CompletableFuture arg1, com.intellij.openapi.application.ModalityState arg2, kotlin.jvm.functions.Function2 arg3, int arg4, java.lang.Object arg5) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5829182Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel reference -2024-02-06T00:50:50.5831545Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5833936Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(String, Icon, String) invocation -2024-02-06T00:50:50.5837026Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String shortText, javax.swing.Icon icon, java.lang.String fullText) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5839762Z #Experimental API method com.intellij.collaboration.ui.icon.CachingIconsProvider.getIcon(T, int) invocation -2024-02-06T00:50:50.5841955Z Experimental API method com.intellij.collaboration.ui.icon.CachingIconsProvider.getIcon(T key, int iconSize) : javax.swing.Icon is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5844511Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.setPersistentHistory(List) is overridden -2024-02-06T00:50:50.5847199Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.setPersistentHistory(java.util.List arg0) : void is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5849284Z #Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider reference -2024-02-06T00:50:50.5851291Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5854021Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.(CachingIconsProvider). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5856608Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5859359Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.$avatarIconsProvider : CachingIconsProvider. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5861348Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.isCancellation(Throwable) invocation -2024-02-06T00:50:50.5863477Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.isCancellation(java.lang.Throwable error) : boolean is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5865716Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getVm() invocation -2024-02-06T00:50:50.5867849Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getVm() : VM is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5870304Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create(CoroutineScope, String, List, Function0, Function1, Function1) invocation -2024-02-06T00:50:50.5873751Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create(kotlinx.coroutines.CoroutineScope vmScope, java.lang.String filterName, java.util.List items, kotlin.jvm.functions.Function0 onSelect, kotlin.jvm.functions.Function1 valuePresenter, kotlin.jvm.functions.Function1 popupItemPresenter) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5877261Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.withQuery(S, String) is overridden -2024-02-06T00:50:50.5879677Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.withQuery(S arg0, java.lang.String arg1) : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5882181Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel.getQuickFilters() is overridden -2024-02-06T00:50:50.5884501Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel.getQuickFilters() : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5886828Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getShortText(S) is overridden -2024-02-06T00:50:50.5889060Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getShortText(S arg0) : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5891575Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.(CoroutineScope, ReviewListSearchHistoryModel, S, Q) invocation -2024-02-06T00:50:50.5894964Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.(kotlinx.coroutines.CoroutineScope scope, com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel historyModel, S emptySearch, Q defaultQuickFilter) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5898264Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.(int, int, DefaultConstructorMarker) invocation -2024-02-06T00:50:50.5901292Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.(int arg0, int arg1, kotlin.jvm.internal.DefaultConstructorMarker arg2) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.(WfRunsListPersistentSearchHistory). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5904010Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.createFilters(CoroutineScope) is overridden -2024-02-06T00:50:50.5906436Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.createFilters(kotlinx.coroutines.CoroutineScope arg0) : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5909261Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create$default(DropDownComponentFactory, CoroutineScope, String, List, Function0, Function1, Function1, int, Object) invocation -2024-02-06T00:50:50.5913332Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create$default(com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory arg0, kotlinx.coroutines.CoroutineScope arg1, java.lang.String arg2, java.util.List arg3, kotlin.jvm.functions.Function0 arg4, kotlin.jvm.functions.Function1 arg5, kotlin.jvm.functions.Function1 arg6, int arg7, java.lang.Object arg8) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5917261Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel reference -2024-02-06T00:50:50.5919468Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5921713Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue.getSearchQuery() is overridden -2024-02-06T00:50:50.5923940Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue.getSearchQuery() : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsListSearchValue. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5926176Z #Experimental API constructor com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.(CoroutineScope, AsyncImageIconsProvider.AsyncImageLoader) invocation -2024-02-06T00:50:50.5928954Z Experimental API constructor com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.(kotlinx.coroutines.CoroutineScope scope, com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader loader) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5931692Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.(VM) invocation -2024-02-06T00:50:50.5933896Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.(VM vm) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:50:50.5935796Z Plugin can probably be enabled or disabled without IDE restart -2024-02-06T00:50:50.5936178Z -2024-02-06T00:50:50.5936860Z 2024-02-06T00:50:50 [main] INFO verification - Total time spent downloading plugins and their dependencies: 352 ms -2024-02-06T00:50:50.5938118Z 2024-02-06T00:50:50 [main] INFO verification - Total amount of plugins and dependencies downloaded: 692.08 KB -2024-02-06T00:50:50.5939271Z 2024-02-06T00:50:50 [main] INFO verification - Total amount of space used for plugins and dependencies: 692.08 KB -2024-02-06T00:50:50.5940870Z 2024-02-06T00:50:50 [main] INFO verification - Verification reports for com.dsoftware.ghtoolbar:1.15.3 saved to /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier/IC-233.14015.23 -2024-02-06T00:50:50.5942344Z 2024-02-06T00:50:50 [main] INFO verification - Total time spent in plugin verification: 12 s 52 ms -2024-02-06T00:50:50.8737472Z -2024-02-06T00:50:50.8738692Z Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. -2024-02-06T00:50:50.8739684Z -2024-02-06T00:50:50.8741206Z You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. -2024-02-06T00:50:50.8742534Z -2024-02-06T00:50:50.8744827Z For more on this, please refer to https://docs.gradle.org/8.5/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. -2024-02-06T00:50:50.8746229Z -2024-02-06T00:50:50.8746464Z BUILD SUCCESSFUL in 43s -2024-02-06T00:50:50.8747534Z 19 actionable tasks: 11 executed, 1 from cache, 7 up-to-date -2024-02-06T00:50:50.8748392Z Configuration cache entry stored. -2024-02-06T00:50:50.8848911Z ##[group]Run PROPERTIES="$(./gradlew properties --console=plain -q)" -2024-02-06T00:50:50.8849669Z PROPERTIES="$(./gradlew properties --console=plain -q)" -2024-02-06T00:50:50.8850578Z VERSION="$(echo "$PROPERTIES" | grep "^version:" | cut -f2- -d ' ')" -2024-02-06T00:50:50.8851457Z CHANGELOG="$(./gradlew getChangelog --unreleased --no-header --console=plain -q)" -2024-02-06T00:50:50.8852115Z  -2024-02-06T00:50:50.8852566Z echo "version=$VERSION" >> $GITHUB_OUTPUT -2024-02-06T00:50:50.8853159Z echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT -2024-02-06T00:50:50.8853725Z  -2024-02-06T00:50:50.8854143Z echo "changelog<> $GITHUB_OUTPUT -2024-02-06T00:50:50.8854647Z echo "$CHANGELOG" >> $GITHUB_OUTPUT -2024-02-06T00:50:50.8855093Z echo "EOF" >> $GITHUB_OUTPUT -2024-02-06T00:50:50.8855517Z  -2024-02-06T00:50:50.8856146Z ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier -2024-02-06T00:50:50.8884267Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2024-02-06T00:50:50.8884883Z env: -2024-02-06T00:50:50.8885255Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:50.8885864Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:50.8886455Z ##[endgroup] -2024-02-06T00:50:53.2985318Z Calculating task graph as no cached configuration is available for tasks: listProductsReleases -2024-02-06T00:50:54.3806037Z > Task :initializeIntelliJPlugin SKIPPED -2024-02-06T00:50:54.3807862Z > Task :patchPluginXml UP-TO-DATE -2024-02-06T00:50:54.3809076Z > Task :downloadIdeaProductReleasesXml -2024-02-06T00:50:54.3817610Z > Task :downloadAndroidStudioProductReleasesXml -2024-02-06T00:50:54.3824637Z > Task :listProductsReleases UP-TO-DATE -2024-02-06T00:50:54.3825505Z -2024-02-06T00:50:54.3826084Z BUILD SUCCESSFUL in 1s -2024-02-06T00:50:54.3829966Z 4 actionable tasks: 2 executed, 2 up-to-date -2024-02-06T00:50:54.3838525Z Configuration cache entry stored. -2024-02-06T00:50:54.4861004Z ##[group]Run actions/cache@v4 -2024-02-06T00:50:54.4861439Z with: -2024-02-06T00:50:54.4861872Z path: ~/.pluginVerifier/ides -2024-02-06T00:50:54.4862522Z key: plugin-verifier-9a305983231f0d6cf534a9fd59cc676edc3526015adcd345873334dba070b40f -2024-02-06T00:50:54.4863211Z enableCrossOsArchive: false -2024-02-06T00:50:54.4863674Z fail-on-cache-miss: false -2024-02-06T00:50:54.4864021Z lookup-only: false -2024-02-06T00:50:54.4864380Z save-always: false -2024-02-06T00:50:54.4864785Z env: -2024-02-06T00:50:54.4865203Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:54.4865881Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:54.4866354Z ##[endgroup] -2024-02-06T00:50:54.7445196Z Cache Size: ~0 MB (210 B) -2024-02-06T00:50:54.7473784Z [command]/usr/bin/tar -xf /home/runner/work/_temp/a8d27f09-c5d2-4771-a8b4-68ba8201a1bf/cache.tzst -P -C /home/runner/work/ghactions-manager/ghactions-manager --use-compress-program unzstd -2024-02-06T00:50:54.7535655Z Cache restored successfully -2024-02-06T00:50:54.7608303Z Cache restored from key: plugin-verifier-9a305983231f0d6cf534a9fd59cc676edc3526015adcd345873334dba070b40f -2024-02-06T00:50:54.7706135Z ##[group]Run ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=~/.pluginVerifier -2024-02-06T00:50:54.7707415Z ./gradlew runPluginVerifier -Pplugin.verifier.home.dir=~/.pluginVerifier -2024-02-06T00:50:54.7733850Z shell: /usr/bin/bash -e {0} -2024-02-06T00:50:54.7734368Z env: -2024-02-06T00:50:54.7734784Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:54.7735519Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:50:54.7736108Z ##[endgroup] -2024-02-06T00:50:55.4406340Z Calculating task graph as configuration cache cannot be reused because the set of Gradle properties has changed. -2024-02-06T00:50:57.0390908Z > Task :initializeIntelliJPlugin SKIPPED -2024-02-06T00:50:57.0392733Z > Task :checkKotlinGradlePluginConfigurationErrors -2024-02-06T00:50:57.0394434Z > Task :patchPluginXml UP-TO-DATE -2024-02-06T00:50:57.0395893Z > Task :verifyPluginConfiguration -2024-02-06T00:50:57.0397593Z > Task :processResources UP-TO-DATE -2024-02-06T00:50:57.0408608Z > Task :downloadAndroidStudioProductReleasesXml -2024-02-06T00:50:57.1405131Z > Task :downloadIdeaProductReleasesXml -2024-02-06T00:50:57.1406817Z > Task :listProductsReleases UP-TO-DATE -2024-02-06T00:50:57.1408365Z > Task :compileKotlin UP-TO-DATE -2024-02-06T00:50:57.1409517Z > Task :compileJava NO-SOURCE -2024-02-06T00:50:57.1410407Z > Task :classes UP-TO-DATE -2024-02-06T00:50:57.1411769Z > Task :instrumentCode UP-TO-DATE -2024-02-06T00:50:57.1412842Z > Task :instrumentedJar UP-TO-DATE -2024-02-06T00:50:57.1413973Z > Task :jar UP-TO-DATE -2024-02-06T00:50:57.1414987Z > Task :prepareSandbox UP-TO-DATE -2024-02-06T00:50:57.1416703Z > Task :compileTestKotlin UP-TO-DATE -2024-02-06T00:50:57.1417574Z > Task :classpathIndexCleanup -2024-02-06T00:50:57.1418381Z > Task :buildSearchableOptions UP-TO-DATE -2024-02-06T00:50:57.1419223Z > Task :jarSearchableOptions UP-TO-DATE -2024-02-06T00:50:57.1420196Z > Task :buildPlugin UP-TO-DATE -2024-02-06T00:50:57.1420829Z > Task :verifyPlugin -2024-02-06T00:50:59.1373807Z -2024-02-06T00:50:59.1375051Z > Task :runPluginVerifier -2024-02-06T00:50:59.1376705Z Starting the IntelliJ Plugin Verifier 1.307 -2024-02-06T00:50:59.1379344Z 2024-02-06T00:50:57 [main] INFO c.j.p.options.OptionsParser - Delete the verification directory /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier because it isn't empty -2024-02-06T00:50:59.1382189Z Verification reports directory: /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier -2024-02-06T00:50:59.1383848Z 2024-02-06T00:50:58 [main] INFO verification - Reading IDE /home/runner/.cache/pluginVerifier/ides/IC-233.14015.23 -2024-02-06T00:50:59.1385185Z 2024-02-06T00:50:58 [main] INFO c.j.p.options.OptionsParser - Reading IDE from /home/runner/.cache/pluginVerifier/ides/IC-233.14015.23 -2024-02-06T00:50:59.1387546Z 2024-02-06T00:50:58 [main] INFO c.j.p.options.OptionsParser - Using Java runtime from /home/runner/.gradle/caches/modules-2/files-2.1/com.jetbrains/jbre/jbr_jcef-17.0.9-linux-x64-b1087.11/extracted/jbr_jcef-17.0.9-linux-x64-b1087.11 -2024-02-06T00:51:05.9401805Z 2024-02-06T00:51:05 [main] INFO verification - Reading plugin to check from /home/runner/work/ghactions-manager/ghactions-manager/build/distributions/github-actions-manager-1.15.3.zip -2024-02-06T00:51:07.2376681Z 2024-02-06T00:51:07 [main] INFO verification - Task check-plugin parameters: -2024-02-06T00:51:07.2377791Z Scheduled verifications (1): -2024-02-06T00:51:07.2378919Z com.dsoftware.ghtoolbar:1.15.3 against IC-233.14015.23 -2024-02-06T00:51:07.2379548Z -2024-02-06T00:51:09.2375882Z 2024-02-06T00:51:09 [main] INFO verification - Finished 1 of 1 verifications (in 2.0 s): IC-233.14015.23 against com.dsoftware.ghtoolbar:1.15.3: Compatible. 142 usages of experimental API -2024-02-06T00:51:09.2378802Z Plugin com.dsoftware.ghtoolbar:1.15.3 against IC-233.14015.23: Compatible. 142 usages of experimental API -2024-02-06T00:51:09.2380125Z Experimental API usages (142): -2024-02-06T00:51:09.2382342Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.create(CoroutineScope) invocation -2024-02-06T00:51:09.2387070Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.create(kotlinx.coroutines.CoroutineScope viewScope) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createWfRunsFiltersPanel(CoroutineScope) : JComponent. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2391223Z #Experimental API class com.intellij.collaboration.ui.SingleValueModel reference -2024-02-06T00:51:09.2394529Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.JobListComponent.Companion.createJobsListComponent(SingleValueModel, WorkflowRunSelectionContext, boolean) : Pair. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2400892Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.(CheckedDisposable, Project, GithubAccount, SingleRunDataLoader, WorkflowRunListLoader, GHGitRepositoryMapping, GithubApiRequestExecutor, WorkflowRunListSelectionHolder, JobListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2406345Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.setLogValue() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2410355Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.setValue() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2414487Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.logDataProviderLoadModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2418807Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.logModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2422808Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.getLogModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2427095Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.getJobDataProviderLoadModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2431612Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2435952Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.jobsModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2440803Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel$2$1.invoke() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2445449Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel(Project, LogLoadingModelListener, Disposable) : JBPanelWithEmptyText. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2450187Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2454533Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2459069Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.JobsLoadingModelListener.getJobsModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2463555Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.getLogDataProviderLoadModel() : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2467790Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext$2.invoke(String) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2471977Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.jobDataProviderLoadModel : SingleValueModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2476369Z Experimental API class com.intellij.collaboration.ui.SingleValueModel is referenced in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2479844Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.getLastFilter() is overridden -2024-02-06T00:51:09.2483479Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.getLastFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2486564Z #Experimental API interface com.intellij.collaboration.ui.icon.IconsProvider reference -2024-02-06T00:51:09.2489749Z Experimental API interface com.intellij.collaboration.ui.icon.IconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2492780Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() invocation -2024-02-06T00:51:09.2495798Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2500403Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel$2$1.invoke() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2505183Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.getValue() : T is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2508720Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() invocation -2024-02-06T00:51:09.2513650Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.WorkflowRunListLoaderPanel$1.invokeSuspend(Object) : Object. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2645273Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.getSearchState() : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2650366Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter reference -2024-02-06T00:51:09.2654365Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2681271Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.getQuickFilterTitle(ReviewListQuickFilter) : String. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2801401Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2804878Z #Experimental API constructor com.intellij.collaboration.ui.icon.CachingIconsProvider.(IconsProvider, Function1, int, DefaultConstructorMarker) invocation -2024-02-06T00:51:09.2809504Z Experimental API constructor com.intellij.collaboration.ui.icon.CachingIconsProvider.(com.intellij.collaboration.ui.icon.IconsProvider arg0, kotlin.jvm.functions.Function1 arg1, int arg2, kotlin.jvm.internal.DefaultConstructorMarker arg3) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2814619Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory reference -2024-02-06T00:51:09.2818242Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2821747Z #Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() invocation -2024-02-06T00:51:09.2825639Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$2.afterChange(KProperty, Boolean, Boolean) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2831562Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$1.afterChange(KProperty, Throwable, Throwable) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2837174Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.eventOccurred() : void is invoked in com.dsoftware.ghmanager.data.ListSelectionHolder.special$.inlined.observable$1.afterChange(KProperty, T, T) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2841093Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple reference -2024-02-06T00:51:09.2845877Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2853081Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2859701Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2866235Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.2872499Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3075503Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(String, Icon, String, int, DefaultConstructorMarker) invocation -2024-02-06T00:51:09.3082286Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3090899Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3100316Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3111093Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String arg0, javax.swing.Icon arg1, java.lang.String arg2, int arg3, kotlin.jvm.internal.DefaultConstructorMarker arg4) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3114641Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue reference -2024-02-06T00:51:09.3116771Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3119961Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.withQuery(ReviewListSearchValue, String) : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3123125Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.getShortText(ReviewListSearchValue) : String. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3126062Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.All.getFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3129057Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.InProgres.getFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3132142Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.getLastFilter() : ReviewListSearchValue. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3135102Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3138196Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.setLastFilter(ReviewListSearchValue) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3140287Z #Experimental API class com.intellij.collaboration.async.CompletableFutureUtil reference -2024-02-06T00:51:09.3142068Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3144771Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3147287Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3149812Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3152411Z Experimental API class com.intellij.collaboration.async.CompletableFutureUtil is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3154341Z #Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader reference -2024-02-06T00:51:09.3156365Z Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3159386Z Experimental API interface com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3161297Z #Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion reference -2024-02-06T00:51:09.3163188Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3165878Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3168668Z Experimental API class com.intellij.collaboration.ui.SimpleEventListener.Companion is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3170689Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel reference -2024-02-06T00:51:09.3172907Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.(WfRunsListPersistentSearchHistory). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3176091Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3177928Z #Experimental API interface com.intellij.collaboration.ui.SimpleEventListener reference -2024-02-06T00:51:09.3179677Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3182371Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.special$.inlined.observable$1.afterChange(KProperty, T, T) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3185402Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.(CheckedDisposable, GithubApiRequestExecutor, RepositoryCoordinates, GhActionsSettingsService, WorkflowRunFilter). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3188497Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3191202Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$1.afterChange(KProperty, Throwable, Throwable) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3193903Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3196401Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.ListSelectionHolder.(). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3199110Z Experimental API interface com.intellij.collaboration.ui.SimpleEventListener is referenced in com.dsoftware.ghmanager.data.WorkflowRunListLoader.special$.inlined.observable$2.afterChange(KProperty, Boolean, Boolean) : void. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3201297Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.load(T, Continuation) is overridden -2024-02-06T00:51:09.3203688Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.load(T arg0, kotlin.coroutines.Continuation arg1) : java.lang.Object is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3206183Z #Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(EventDispatcher, Disposable, Function0) invocation -2024-02-06T00:51:09.3209253Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3213365Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3217632Z Experimental API method com.intellij.collaboration.ui.SimpleEventListener.Companion.addDisposableListener(com.intellij.util.EventDispatcher dispatcher, com.intellij.openapi.Disposable disposable, kotlin.jvm.functions.Function0 listener) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3220611Z #Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T) invocation -2024-02-06T00:51:09.3222542Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3225426Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3228823Z Experimental API constructor com.intellij.collaboration.ui.SingleValueModel.(T initialValue) is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.(CheckedDisposable, Project, GithubAccount, SingleRunDataLoader, WorkflowRunListLoader, GHGitRepositoryMapping, GithubApiRequestExecutor, WorkflowRunListSelectionHolder, JobListSelectionHolder). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3231451Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase reference -2024-02-06T00:51:09.3233544Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3236438Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3238995Z #Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory reference -2024-02-06T00:51:09.3241119Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3243815Z Experimental API class com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3245688Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T) invocation -2024-02-06T00:51:09.3247556Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.setValue() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3250120Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewJobsProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3252601Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext$2.invoke(String) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3255226Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.WorkflowRunSelectionContext.setNewLogProvider() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3257754Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.setValue(T value) : void is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.setLogValue() : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3259531Z #Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(Function1) invocation -2024-02-06T00:51:09.3261957Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.ui.panels.JobListComponent.Companion.createJobsListComponent(SingleValueModel, WorkflowRunSelectionContext, boolean) : Pair. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3265352Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.data.LogLoadingModelListener.(Disposable, SingleValueModel, JobListSelectionHolder). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3268660Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.ui.panels.LogConsolePanelKt.createLogConsolePanel(Project, LogLoadingModelListener, Disposable) : JBPanelWithEmptyText. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3272119Z Experimental API method com.intellij.collaboration.ui.SingleValueModel.addAndInvokeListener(kotlin.jvm.functions.Function1 listener) : void is invoked in com.dsoftware.ghmanager.data.JobsLoadingModelListener.(Disposable, SingleValueModel, WorkflowRunListSelectionHolder). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3274461Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation reference -2024-02-06T00:51:09.3277077Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3280993Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$11.invoke(String) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3284440Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$3.invoke(WorkflowType) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3288028Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$9.invoke(WfRunsListSearchValue.Status) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3291778Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$14.invoke(WfRunsListSearchValue.Event) : ChooserPopupUtil.PopupItemPresentation. This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3294073Z #Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion access -2024-02-06T00:51:09.3296248Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addErrorChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3299470Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.addLoadingStateChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3302806Z Experimental API field com.intellij.collaboration.ui.SimpleEventListener.Companion : com.intellij.collaboration.ui.SimpleEventListener.Companion is accessed in com.dsoftware.ghmanager.data.ListSelectionHolder.addSelectionChangeListener(Disposable, Function0) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3305331Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.successOnEdt$default(CompletableFutureUtil, CompletableFuture, ModalityState, Function1, int, Object) invocation -2024-02-06T00:51:09.3308904Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.successOnEdt$default(com.intellij.collaboration.async.CompletableFutureUtil arg0, java.util.concurrent.CompletableFuture arg1, com.intellij.openapi.application.ModalityState arg2, kotlin.jvm.functions.Function1 arg3, int arg4, java.lang.Object arg5) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3312366Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.setLastFilter(S) is overridden -2024-02-06T00:51:09.3314698Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel.setLastFilter(S arg0) : void is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3317672Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.partialState(MutableStateFlow, Function1, Function2) invocation -2024-02-06T00:51:09.3321104Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.partialState(kotlinx.coroutines.flow.MutableStateFlow $this$partialState, kotlin.jvm.functions.Function1 getter, kotlin.jvm.functions.Function2 updater) : kotlinx.coroutines.flow.MutableStateFlow is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3324283Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.(MutableStateFlow) invocation -2024-02-06T00:51:09.3326782Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.(kotlinx.coroutines.flow.MutableStateFlow state) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3329411Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(ProgressManager, ProgressIndicator, Function1) invocation -2024-02-06T00:51:09.3332507Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3337195Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3377988Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.submitIOTask(com.intellij.openapi.progress.ProgressManager $this$submitIOTask, com.intellij.openapi.progress.ProgressIndicator progressIndicator, kotlin.jvm.functions.Function1 task) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3383824Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() is overridden -2024-02-06T00:51:09.3387707Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.InProgres. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3392922Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListQuickFilter.getFilter() : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WorkflowRunListQuickFilter.All. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3396551Z #Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE access -2024-02-06T00:51:09.3400655Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3406668Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowDataContextService.acquireContext$1$1.invoke(ProgressIndicator) : CompletableFuture. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3412906Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore(ProgressIndicator, boolean) : CompletableFuture. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3419448Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.requestLoadMore$4.invoke(List) : CompletionStage. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3425205Z Experimental API field com.intellij.collaboration.async.CompletableFutureUtil.INSTANCE : com.intellij.collaboration.async.CompletableFutureUtil is accessed in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This field can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3428868Z #Experimental API class com.intellij.collaboration.ui.icon.AsyncImageIconsProvider reference -2024-02-06T00:51:09.3432362Z Experimental API class com.intellij.collaboration.ui.icon.AsyncImageIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3436074Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.postProcess(Image, Continuation) is overridden -2024-02-06T00:51:09.3441109Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.postProcess(java.awt.Image image, kotlin.coroutines.Continuation $completion) : java.lang.Object is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3445807Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getQuickFilterTitle(Q) is overridden -2024-02-06T00:51:09.3450092Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getQuickFilterTitle(Q arg0) : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3454613Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.getPersistentHistory() is overridden -2024-02-06T00:51:09.3458243Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.getPersistentHistory() : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3460806Z #Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.createBaseIcon(T, int) is overridden -2024-02-06T00:51:09.3463376Z Experimental API method com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader.createBaseIcon(T key, int iconSize) : javax.swing.Icon is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.AvatarLoader. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3465916Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.handleOnEdt$default(CompletableFutureUtil, CompletableFuture, ModalityState, Function2, int, Object) invocation -2024-02-06T00:51:09.3469377Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.handleOnEdt$default(com.intellij.collaboration.async.CompletableFutureUtil arg0, java.util.concurrent.CompletableFuture arg1, com.intellij.openapi.application.ModalityState arg2, kotlin.jvm.functions.Function2 arg3, int arg4, java.lang.Object arg5) : java.util.concurrent.CompletableFuture is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore(boolean) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3472662Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel reference -2024-02-06T00:51:09.3474797Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3477534Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(String, Icon, String) invocation -2024-02-06T00:51:09.3480575Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ChooserPopupUtil.PopupItemPresentation.Simple.(java.lang.String shortText, javax.swing.Icon icon, java.lang.String fullText) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3483303Z #Experimental API method com.intellij.collaboration.ui.icon.CachingIconsProvider.getIcon(T, int) invocation -2024-02-06T00:51:09.3485520Z Experimental API method com.intellij.collaboration.ui.icon.CachingIconsProvider.getIcon(T key, int iconSize) : javax.swing.Icon is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3488037Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.setPersistentHistory(List) is overridden -2024-02-06T00:51:09.3490619Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.setPersistentHistory(java.util.List arg0) : void is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3492726Z #Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider reference -2024-02-06T00:51:09.3494720Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.invoke(GHUser) : ChooserPopupUtil.PopupItemPresentation. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3497633Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.(CachingIconsProvider). This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3500249Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3502999Z Experimental API class com.intellij.collaboration.ui.icon.CachingIconsProvider is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters$6.$avatarIconsProvider : CachingIconsProvider. This class can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3505016Z #Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.isCancellation(Throwable) invocation -2024-02-06T00:51:09.3507071Z Experimental API method com.intellij.collaboration.async.CompletableFutureUtil.isCancellation(java.lang.Throwable error) : boolean is invoked in com.dsoftware.ghmanager.data.WorkflowRunListLoader.loadMore$1.invoke(List, Throwable) : void. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3509408Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getVm() invocation -2024-02-06T00:51:09.3511570Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getVm() : VM is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3514030Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create(CoroutineScope, String, List, Function0, Function1, Function1) invocation -2024-02-06T00:51:09.3517664Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create(kotlinx.coroutines.CoroutineScope vmScope, java.lang.String filterName, java.util.List items, kotlin.jvm.functions.Function0 onSelect, kotlin.jvm.functions.Function1 valuePresenter, kotlin.jvm.functions.Function1 popupItemPresenter) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3521067Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.withQuery(S, String) is overridden -2024-02-06T00:51:09.3523513Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.withQuery(S arg0, java.lang.String arg1) : S is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3525862Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel.getQuickFilters() is overridden -2024-02-06T00:51:09.3528242Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModel.getQuickFilters() : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3530511Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getShortText(S) is overridden -2024-02-06T00:51:09.3532749Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.getShortText(S arg0) : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3535382Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.(CoroutineScope, ReviewListSearchHistoryModel, S, Q) invocation -2024-02-06T00:51:09.3538800Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelViewModelBase.(kotlinx.coroutines.CoroutineScope scope, com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel historyModel, S emptySearch, Q defaultQuickFilter) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3542228Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.(int, int, DefaultConstructorMarker) invocation -2024-02-06T00:51:09.3545196Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.PersistingReviewListSearchHistoryModel.(int arg0, int arg1, kotlin.jvm.internal.DefaultConstructorMarker arg2) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchHistoryModel.(WfRunsListPersistentSearchHistory). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3547888Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.createFilters(CoroutineScope) is overridden -2024-02-06T00:51:09.3550382Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.createFilters(kotlinx.coroutines.CoroutineScope arg0) : java.util.List is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3553137Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create$default(DropDownComponentFactory, CoroutineScope, String, List, Function0, Function1, Function1, int, Object) invocation -2024-02-06T00:51:09.3557412Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory.create$default(com.intellij.collaboration.ui.codereview.list.search.DropDownComponentFactory arg0, kotlinx.coroutines.CoroutineScope arg1, java.lang.String arg2, java.util.List arg3, kotlin.jvm.functions.Function0 arg4, kotlin.jvm.functions.Function1 arg5, kotlin.jvm.functions.Function1 arg6, int arg7, java.lang.Object arg8) : javax.swing.JComponent is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3561155Z #Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel reference -2024-02-06T00:51:09.3563365Z Experimental API interface com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchHistoryModel is referenced in com.dsoftware.ghmanager.ui.panels.filters.WfRunsSearchPanelViewModel.(CoroutineScope, WorkflowRunSelectionContext). This interface can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3565678Z #Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue.getSearchQuery() is overridden -2024-02-06T00:51:09.3567864Z Experimental API method com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchValue.getSearchQuery() : java.lang.String is overridden in class com.dsoftware.ghmanager.ui.panels.filters.WfRunsListSearchValue. This method can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3570261Z #Experimental API constructor com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.(CoroutineScope, AsyncImageIconsProvider.AsyncImageLoader) invocation -2024-02-06T00:51:09.3573131Z Experimental API constructor com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.(kotlinx.coroutines.CoroutineScope scope, com.intellij.collaboration.ui.icon.AsyncImageIconsProvider.AsyncImageLoader loader) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.createFilters(CoroutineScope) : List. This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3575790Z #Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.(VM) invocation -2024-02-06T00:51:09.3578086Z Experimental API constructor com.intellij.collaboration.ui.codereview.list.search.ReviewListSearchPanelFactory.(VM vm) is invoked in com.dsoftware.ghmanager.ui.panels.filters.WfRunsFiltersFactory.(WfRunsSearchPanelViewModel). This constructor can be changed in a future release leading to incompatibilities -2024-02-06T00:51:09.3580153Z Plugin can probably be enabled or disabled without IDE restart -2024-02-06T00:51:09.3580537Z -2024-02-06T00:51:09.3581471Z 2024-02-06T00:51:09 [main] INFO verification - Total time spent downloading plugins and their dependencies: 0 ms -2024-02-06T00:51:09.3582666Z 2024-02-06T00:51:09 [main] INFO verification - Total amount of plugins and dependencies downloaded: 0 B -2024-02-06T00:51:09.3583743Z 2024-02-06T00:51:09 [main] INFO verification - Total amount of space used for plugins and dependencies: 692.08 KB -2024-02-06T00:51:09.3585373Z 2024-02-06T00:51:09 [main] INFO verification - Verification reports for com.dsoftware.ghtoolbar:1.15.3 saved to /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier/IC-233.14015.23 -2024-02-06T00:51:09.3586937Z 2024-02-06T00:51:09 [main] INFO verification - Total time spent in plugin verification: 10 s 691 ms -2024-02-06T00:51:09.6663051Z -2024-02-06T00:51:09.6664347Z BUILD SUCCESSFUL in 14s -2024-02-06T00:51:09.6665393Z 19 actionable tasks: 7 executed, 12 up-to-date -2024-02-06T00:51:09.6666251Z Configuration cache entry stored. -2024-02-06T00:51:09.6821849Z ##[group]Run actions/upload-artifact@v4 -2024-02-06T00:51:09.6822447Z with: -2024-02-06T00:51:09.6822844Z name: pluginVerifier-result -2024-02-06T00:51:09.6823813Z path: /home/runner/work/ghactions-manager/ghactions-manager/build/reports/pluginVerifier -2024-02-06T00:51:09.6824857Z if-no-files-found: warn -2024-02-06T00:51:09.6825364Z compression-level: 6 -2024-02-06T00:51:09.6825811Z overwrite: false -2024-02-06T00:51:09.6826188Z env: -2024-02-06T00:51:09.6826692Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:09.6827603Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:09.6828354Z ##[endgroup] -2024-02-06T00:51:09.8908576Z With the provided path, there will be 5 files uploaded -2024-02-06T00:51:09.8914173Z Artifact name is valid! -2024-02-06T00:51:09.8915231Z Root directory input is valid! -2024-02-06T00:51:09.9693535Z Beginning upload of artifact content to blob storage -2024-02-06T00:51:10.0233761Z Uploaded bytes 10519 -2024-02-06T00:51:10.0394706Z Finished uploading artifact content to blob storage! -2024-02-06T00:51:10.0400272Z SHA256 hash of uploaded artifact zip is c9d448811f568a0b81e6f04d9b113e518a3cb241bfe34c3dd514a2d3b6fe7e40 -2024-02-06T00:51:10.0401693Z Finalizing artifact upload -2024-02-06T00:51:10.1124113Z Artifact pluginVerifier-result.zip successfully finalized. Artifact ID 1222165056 -2024-02-06T00:51:10.1126022Z Artifact pluginVerifier-result has been successfully uploaded! Final size is 10519 bytes. Artifact ID is 1222165056 -2024-02-06T00:51:10.1131281Z Artifact download URL: https://github.com/cunla/ghactions-manager/actions/runs/7792954290/artifacts/1222165056 -2024-02-06T00:51:10.1236603Z ##[group]Run cd /home/runner/work/ghactions-manager/ghactions-manager/build/distributions -2024-02-06T00:51:10.1237716Z cd /home/runner/work/ghactions-manager/ghactions-manager/build/distributions -2024-02-06T00:51:10.1238324Z FILENAME=`ls *.zip` -2024-02-06T00:51:10.1238640Z unzip "$FILENAME" -d content -2024-02-06T00:51:10.1238965Z  -2024-02-06T00:51:10.1239280Z echo "filename=${FILENAME:0:-4}" >> $GITHUB_OUTPUT -2024-02-06T00:51:10.1264711Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} -2024-02-06T00:51:10.1265119Z env: -2024-02-06T00:51:10.1265428Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:10.1265961Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:10.1266391Z ##[endgroup] -2024-02-06T00:51:10.1533228Z Archive: github-actions-manager-1.15.3.zip -2024-02-06T00:51:10.1534352Z creating: content/github-actions-manager/ -2024-02-06T00:51:10.1535404Z creating: content/github-actions-manager/lib/ -2024-02-06T00:51:10.1536680Z inflating: content/github-actions-manager/lib/mockk-core-jvm-1.13.9.jar -2024-02-06T00:51:10.1665543Z inflating: content/github-actions-manager/lib/kotlin-stdlib-1.9.21.jar -2024-02-06T00:51:10.1680219Z inflating: content/github-actions-manager/lib/junit-platform-engine-1.8.2.jar -2024-02-06T00:51:10.1681342Z inflating: content/github-actions-manager/lib/kotlin-stdlib-jdk8-1.9.10.jar -2024-02-06T00:51:10.1684077Z inflating: content/github-actions-manager/lib/annotations-24.1.0.jar -2024-02-06T00:51:10.1719553Z inflating: content/github-actions-manager/lib/mockk-dsl-jvm-1.13.9.jar -2024-02-06T00:51:10.1759883Z inflating: content/github-actions-manager/lib/junit-jupiter-params-5.8.2.jar -2024-02-06T00:51:10.1760984Z inflating: content/github-actions-manager/lib/kotlin-stdlib-jdk7-1.9.10.jar -2024-02-06T00:51:10.1993516Z inflating: content/github-actions-manager/lib/kotlin-reflect-1.9.10.jar -2024-02-06T00:51:10.1994803Z inflating: content/github-actions-manager/lib/opentest4j-1.2.0.jar -2024-02-06T00:51:10.2315292Z inflating: content/github-actions-manager/lib/byte-buddy-1.14.6.jar -2024-02-06T00:51:10.2329740Z inflating: content/github-actions-manager/lib/junit-jupiter-api-5.8.2.jar -2024-02-06T00:51:10.2336761Z inflating: content/github-actions-manager/lib/mockk-agent-jvm-1.13.9.jar -2024-02-06T00:51:10.2369780Z inflating: content/github-actions-manager/lib/instrumented-ghactions-manager-1.15.3.jar -2024-02-06T00:51:10.2377465Z inflating: content/github-actions-manager/lib/junit-platform-commons-1.8.2.jar -2024-02-06T00:51:10.2489436Z inflating: content/github-actions-manager/lib/kotlinx-coroutines-core-jvm-1.6.4.jar -2024-02-06T00:51:10.2490938Z inflating: content/github-actions-manager/lib/junit-jupiter-5.8.2.jar -2024-02-06T00:51:10.2494845Z inflating: content/github-actions-manager/lib/objenesis-3.3.jar -2024-02-06T00:51:10.2514174Z inflating: content/github-actions-manager/lib/byte-buddy-agent-1.14.6.jar -2024-02-06T00:51:10.2552825Z inflating: content/github-actions-manager/lib/mockk-jvm-1.13.9.jar -2024-02-06T00:51:10.2580512Z inflating: content/github-actions-manager/lib/junit-4.13.2.jar -2024-02-06T00:51:10.2584456Z inflating: content/github-actions-manager/lib/hamcrest-core-1.3.jar -2024-02-06T00:51:10.2588743Z inflating: content/github-actions-manager/lib/mockk-agent-api-jvm-1.13.9.jar -2024-02-06T00:51:10.2606084Z inflating: content/github-actions-manager/lib/junit-jupiter-engine-5.8.2.jar -2024-02-06T00:51:10.2607102Z inflating: content/github-actions-manager/lib/searchableOptions-1.15.3.jar -2024-02-06T00:51:10.2659102Z ##[group]Run actions/upload-artifact@v4 -2024-02-06T00:51:10.2659469Z with: -2024-02-06T00:51:10.2659727Z name: github-actions-manager-1.15.3 -2024-02-06T00:51:10.2660111Z path: ./build/distributions/content/*/* -2024-02-06T00:51:10.2660467Z if-no-files-found: warn -2024-02-06T00:51:10.2660752Z compression-level: 6 -2024-02-06T00:51:10.2661022Z overwrite: false -2024-02-06T00:51:10.2661259Z env: -2024-02-06T00:51:10.2661579Z JAVA_HOME: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:10.2662117Z JAVA_HOME_17_X64: /opt/hostedtoolcache/Java_Zulu_jdk/17.0.10-7/x64 -2024-02-06T00:51:10.2662544Z ##[endgroup] -2024-02-06T00:51:10.4757358Z With the provided path, there will be 25 files uploaded -2024-02-06T00:51:10.4764049Z Artifact name is valid! -2024-02-06T00:51:10.4765035Z Root directory input is valid! -2024-02-06T00:51:10.5548824Z Beginning upload of artifact content to blob storage -2024-02-06T00:51:11.0528577Z Uploaded bytes 8388608 -2024-02-06T00:51:11.2250792Z Uploaded bytes 12694043 -2024-02-06T00:51:11.2421746Z Finished uploading artifact content to blob storage! -2024-02-06T00:51:11.2429266Z SHA256 hash of uploaded artifact zip is 3334d3208d7149cc3ac9120781788afc3a4d0f0f43eb4c2a1d0b35754529bcc5 -2024-02-06T00:51:11.2431646Z Finalizing artifact upload -2024-02-06T00:51:11.3184286Z Artifact github-actions-manager-1.15.3.zip successfully finalized. Artifact ID 1222165082 -2024-02-06T00:51:11.3186605Z Artifact github-actions-manager-1.15.3 has been successfully uploaded! Final size is 12694043 bytes. Artifact ID is 1222165082 -2024-02-06T00:51:11.3193807Z Artifact download URL: https://github.com/cunla/ghactions-manager/actions/runs/7792954290/artifacts/1222165082 -2024-02-06T00:51:11.3952977Z Post job cleanup. -2024-02-06T00:51:11.5135994Z Cache hit occurred on the primary key plugin-verifier-9a305983231f0d6cf534a9fd59cc676edc3526015adcd345873334dba070b40f, not saving cache. -2024-02-06T00:51:11.5262146Z Post job cleanup. -2024-02-06T00:51:11.6789951Z Cache hit occurred on the primary key setup-java-Linux-gradle-5692ce608cf1a87ae7313a2527bf681efc1c5dfa44e5c41df2bc168e5700fa63, not saving cache. -2024-02-06T00:51:11.6947086Z Post job cleanup. -2024-02-06T00:51:11.7682000Z [command]/usr/bin/git version -2024-02-06T00:51:11.7721422Z git version 2.43.0 -2024-02-06T00:51:11.7762076Z Temporarily overriding HOME='/home/runner/work/_temp/05dc2046-0f24-4d00-87bb-270cb0378720' before making global git config changes -2024-02-06T00:51:11.7763715Z Adding repository directory to the temporary git global config as a safe directory -2024-02-06T00:51:11.7766785Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/ghactions-manager/ghactions-manager -2024-02-06T00:51:11.7800308Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand -2024-02-06T00:51:11.7831785Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" -2024-02-06T00:51:11.8075594Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader -2024-02-06T00:51:11.8096252Z http.https://github.com/.extraheader -2024-02-06T00:51:11.8107223Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader -2024-02-06T00:51:11.8136493Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" -2024-02-06T00:51:11.8594630Z Evaluate and set job outputs -2024-02-06T00:51:11.8605348Z Set output 'version' -2024-02-06T00:51:11.8606535Z Cleaning up orphan processes -2024-02-06T00:51:11.8972267Z Terminate orphan process: pid (1814) (java) -2024-02-06T00:51:11.9015178Z Terminate orphan process: pid (2014) (java) +2024-02-11T18:09:46.0868579Z Requested labels: ubuntu-latest +2024-02-11T18:09:46.0868885Z Job defined at: cunla/fakeredis-py/dynamic/github-code-scanning/codeql@refs/heads/master +2024-02-11T18:09:46.0869046Z Waiting for a runner to pick up this job... +2024-02-11T18:09:46.4058838Z Job is waiting for a hosted runner to come online. +2024-02-11T18:09:49.6432085Z Job is about to start running on the hosted runner: GitHub Actions 9 (hosted) +2024-02-11T18:09:51.5986433Z Current runner version: '2.312.0' +2024-02-11T18:09:51.6009132Z ##[group]Operating System +2024-02-11T18:09:51.6009729Z Ubuntu +2024-02-11T18:09:51.6010067Z 22.04.3 +2024-02-11T18:09:51.6010549Z LTS +2024-02-11T18:09:51.6010842Z ##[endgroup] +2024-02-11T18:09:51.6011205Z ##[group]Runner Image +2024-02-11T18:09:51.6011705Z Image: ubuntu-22.04 +2024-02-11T18:09:51.6012055Z Version: 20240204.1.0 +2024-02-11T18:09:51.6013036Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20240204.1/images/ubuntu/Ubuntu2204-Readme.md +2024-02-11T18:09:51.6014540Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20240204.1 +2024-02-11T18:09:51.6015354Z ##[endgroup] +2024-02-11T18:09:51.6015761Z ##[group]Runner Image Provisioner +2024-02-11T18:09:51.6016299Z 2.0.341.1 +2024-02-11T18:09:51.6016597Z ##[endgroup] +2024-02-11T18:09:51.6017752Z ##[group]GITHUB_TOKEN Permissions +2024-02-11T18:09:51.6019347Z Actions: read +2024-02-11T18:09:51.6019754Z Contents: read +2024-02-11T18:09:51.6020410Z Metadata: read +2024-02-11T18:09:51.6020885Z SecurityEvents: write +2024-02-11T18:09:51.6021383Z ##[endgroup] +2024-02-11T18:09:51.6024236Z Secret source: Actions +2024-02-11T18:09:51.6024835Z Prepare workflow directory +2024-02-11T18:09:51.6932390Z Prepare all required actions +2024-02-11T18:09:51.7088458Z Getting action download info +2024-02-11T18:09:51.8608538Z Download action repository 'actions/checkout@v4' (SHA:b4ffde65f46336ab88eb53be808477a3936bae11) +2024-02-11T18:09:52.0592040Z Download action repository 'github/codeql-action@v3' (SHA:e8893c57a1f3a2b659b6b55564fdfdbbd2982911) +2024-02-11T18:09:55.8437666Z Complete job name: Analyze (python) +2024-02-11T18:09:55.9182874Z ##[group]Run actions/checkout@v4 +2024-02-11T18:09:55.9183262Z with: +2024-02-11T18:09:55.9183514Z repository: cunla/fakeredis-py +2024-02-11T18:09:55.9184003Z token: *** +2024-02-11T18:09:55.9184247Z ssh-strict: true +2024-02-11T18:09:55.9184509Z persist-credentials: true +2024-02-11T18:09:55.9184784Z clean: true +2024-02-11T18:09:55.9185048Z sparse-checkout-cone-mode: true +2024-02-11T18:09:55.9185370Z fetch-depth: 1 +2024-02-11T18:09:55.9185605Z fetch-tags: false +2024-02-11T18:09:55.9185860Z show-progress: true +2024-02-11T18:09:55.9186106Z lfs: false +2024-02-11T18:09:55.9186319Z submodules: false +2024-02-11T18:09:55.9186581Z set-safe-directory: true +2024-02-11T18:09:55.9186844Z env: +2024-02-11T18:09:55.9187060Z CODE_SCANNING_REF: refs/heads/master +2024-02-11T18:09:55.9187430Z CODE_SCANNING_IS_ANALYZING_DEFAULT_BRANCH: true +2024-02-11T18:09:55.9192053Z CODE_SCANNING_WORKFLOW_FILE: H4sIAAAAAAAA/4xTwW7TQBC9+ytGplcnBzj5VJMmEBGl0IIqQJW1scf2Uns23ZlNcEP+HdlrFwJU9OZ9+/bNvJlnUg3GEM5Mjh9WYWAdRR46Oxyg1FK5zQR3SDLRtHXCk8zkmHKmiDSVqXWUdnw4HgNDMeQtqUZnQfDNbDgOABSpun3A7hPAKyce6hHriKPuods4EhfVSpClv9qibTSzNsT+NYDKpD+CRZUPWGZIkOQUZMyc1dJGfescw95q8RU7viaHkaEIrTU2hkLV7C9ZrBIs27FgoXQdFYrldxJAo8Tq7yMJoFZUOlViDF9h20plCG77S6TdyJpdXszT61myXi/Xb9Kr+eLZI8aim+6/VJbXabJOVp+/dIeL+SL5tPqYvr5K1rO3z1XXnPoVdYccC+VqSTdWUVY9VfXm8urdYnV5ky6Wq/lz6+yNvStqs08LXeOozILbYbnREI5ZhdmdcQIWt4a1GNsOTThGjscITLOBd757FZwILEmLVrV+QPChPnnuG512vd3XkRebatJyvns5EPdaqr9Xy96o3/xkRH+NCODeodUdLwzhBVz4UfZoC+zG+A0RLHQZw49HBEAqi0qixuRYc5cjuA1Ojb1HWxjbDK78X8Sa/29v+AWfcph1iTe2jSGcPgb57HD4w+rxGAY/AwAA///Offf3LQQAAA== +2024-02-11T18:09:55.9196878Z ##[endgroup] +2024-02-11T18:09:56.1045189Z Syncing repository: cunla/fakeredis-py +2024-02-11T18:09:56.1047335Z ##[group]Getting Git version info +2024-02-11T18:09:56.1048299Z Working directory is '/home/runner/work/fakeredis-py/fakeredis-py' +2024-02-11T18:09:56.1049429Z [command]/usr/bin/git version +2024-02-11T18:09:56.1113033Z git version 2.43.0 +2024-02-11T18:09:56.1137894Z ##[endgroup] +2024-02-11T18:09:56.1160798Z Temporarily overriding HOME='/home/runner/work/_temp/0dc28f47-172b-49e7-8f68-67097cdea97f' before making global git config changes +2024-02-11T18:09:56.1162472Z Adding repository directory to the temporary git global config as a safe directory +2024-02-11T18:09:56.1163991Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:09:56.1198175Z Deleting the contents of '/home/runner/work/fakeredis-py/fakeredis-py' +2024-02-11T18:09:56.1205169Z ##[group]Initializing the repository +2024-02-11T18:09:56.1208385Z [command]/usr/bin/git init /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:09:56.1289706Z hint: Using 'master' as the name for the initial branch. This default branch name +2024-02-11T18:09:56.1291049Z hint: is subject to change. To configure the initial branch name to use in all +2024-02-11T18:09:56.1292184Z hint: of your new repositories, which will suppress this warning, call: +2024-02-11T18:09:56.1292974Z hint: +2024-02-11T18:09:56.1293545Z hint: git config --global init.defaultBranch +2024-02-11T18:09:56.1294176Z hint: +2024-02-11T18:09:56.1294794Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2024-02-11T18:09:56.1295489Z hint: 'development'. The just-created branch can be renamed via this command: +2024-02-11T18:09:56.1296044Z hint: +2024-02-11T18:09:56.1296305Z hint: git branch -m +2024-02-11T18:09:56.1299951Z Initialized empty Git repository in /home/runner/work/fakeredis-py/fakeredis-py/.git/ +2024-02-11T18:09:56.1308850Z [command]/usr/bin/git remote add origin https://github.com/cunla/fakeredis-py +2024-02-11T18:09:56.1342612Z ##[endgroup] +2024-02-11T18:09:56.1343378Z ##[group]Disabling automatic garbage collection +2024-02-11T18:09:56.1346623Z [command]/usr/bin/git config --local gc.auto 0 +2024-02-11T18:09:56.1375890Z ##[endgroup] +2024-02-11T18:09:56.1376450Z ##[group]Setting up auth +2024-02-11T18:09:56.1381420Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-02-11T18:09:56.1410410Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-02-11T18:09:56.1716866Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-02-11T18:09:56.1745427Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-02-11T18:09:56.1976054Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2024-02-11T18:09:56.2033070Z ##[endgroup] +2024-02-11T18:09:56.2033918Z ##[group]Fetching the repository +2024-02-11T18:09:56.2042891Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1:refs/remotes/origin/master +2024-02-11T18:09:56.4232812Z From https://github.com/cunla/fakeredis-py +2024-02-11T18:09:56.4234500Z * [new ref] a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1 -> origin/master +2024-02-11T18:09:56.4261493Z ##[endgroup] +2024-02-11T18:09:56.4262241Z ##[group]Determining the checkout info +2024-02-11T18:09:56.4263659Z ##[endgroup] +2024-02-11T18:09:56.4264529Z ##[group]Checking out the ref +2024-02-11T18:09:56.4268800Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master +2024-02-11T18:09:56.4388547Z Reset branch 'master' +2024-02-11T18:09:56.4390596Z branch 'master' set up to track 'origin/master'. +2024-02-11T18:09:56.4396923Z ##[endgroup] +2024-02-11T18:09:56.4430595Z [command]/usr/bin/git log -1 --format='%H' +2024-02-11T18:09:56.4454296Z 'a0576c489ba7cad8cad4ba7e14a7fe30ef9959a1' +2024-02-11T18:09:56.4777986Z ##[group]Run github/codeql-action/init@v3 +2024-02-11T18:09:56.4778378Z with: +2024-02-11T18:09:56.4778598Z languages: python +2024-02-11T18:09:56.4778871Z config: threat-models: [ ] + +2024-02-11T18:09:56.4779325Z token: *** +2024-02-11T18:09:56.4779581Z matrix: { + "language": "python" +} +2024-02-11T18:09:56.4779942Z setup-python-dependencies: true +2024-02-11T18:09:56.4780258Z debug: false +2024-02-11T18:09:56.4780478Z env: +2024-02-11T18:09:56.4780707Z CODE_SCANNING_REF: refs/heads/master +2024-02-11T18:09:56.4781319Z CODE_SCANNING_IS_ANALYZING_DEFAULT_BRANCH: true +2024-02-11T18:09:56.4785967Z CODE_SCANNING_WORKFLOW_FILE: H4sIAAAAAAAA/4xTwW7TQBC9+ytGplcnBzj5VJMmEBGl0IIqQJW1scf2Uns23ZlNcEP+HdlrFwJU9OZ9+/bNvJlnUg3GEM5Mjh9WYWAdRR46Oxyg1FK5zQR3SDLRtHXCk8zkmHKmiDSVqXWUdnw4HgNDMeQtqUZnQfDNbDgOABSpun3A7hPAKyce6hHriKPuods4EhfVSpClv9qibTSzNsT+NYDKpD+CRZUPWGZIkOQUZMyc1dJGfescw95q8RU7viaHkaEIrTU2hkLV7C9ZrBIs27FgoXQdFYrldxJAo8Tq7yMJoFZUOlViDF9h20plCG77S6TdyJpdXszT61myXi/Xb9Kr+eLZI8aim+6/VJbXabJOVp+/dIeL+SL5tPqYvr5K1rO3z1XXnPoVdYccC+VqSTdWUVY9VfXm8urdYnV5ky6Wq/lz6+yNvStqs08LXeOozILbYbnREI5ZhdmdcQIWt4a1GNsOTThGjscITLOBd757FZwILEmLVrV+QPChPnnuG512vd3XkRebatJyvns5EPdaqr9Xy96o3/xkRH+NCODeodUdLwzhBVz4UfZoC+zG+A0RLHQZw49HBEAqi0qixuRYc5cjuA1Ojb1HWxjbDK78X8Sa/29v+AWfcph1iTe2jSGcPgb57HD4w+rxGAY/AwAA///Offf3LQQAAA== +2024-02-11T18:09:56.4790516Z ##[endgroup] +2024-02-11T18:09:57.4025139Z ##[group]Setup CodeQL tools +2024-02-11T18:09:57.4034953Z Found CodeQL tools version 2.16.1 in the toolcache. +2024-02-11T18:09:57.4039629Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql version --format=json +2024-02-11T18:10:01.2952933Z { +2024-02-11T18:10:01.2953962Z "productName" : "CodeQL", +2024-02-11T18:10:01.2954620Z "vendor" : "GitHub", +2024-02-11T18:10:01.2955031Z "version" : "2.16.1", +2024-02-11T18:10:01.2955786Z "sha" : "be2c95041458fef8f75f3338dbbfac67491f98d5", +2024-02-11T18:10:01.2956399Z "branches" : [ +2024-02-11T18:10:01.2957030Z "codeql-cli-2.16.1" +2024-02-11T18:10:01.2957457Z ], +2024-02-11T18:10:01.2957992Z "copyright" : "Copyright (C) 2019-2024 GitHub, Inc.", +2024-02-11T18:10:01.2958839Z "unpackedLocation" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql", +2024-02-11T18:10:01.2959536Z "configFileLocation" : "/home/runner/.config/codeql/config", +2024-02-11T18:10:01.2959960Z "configFileFound" : false, +2024-02-11T18:10:01.2960234Z "features" : { +2024-02-11T18:10:01.2960499Z "analysisSummaryV2Option" : true, +2024-02-11T18:10:01.2960833Z "buildModeOption" : true, +2024-02-11T18:10:01.2961175Z "bundleSupportsIncludeDiagnostics" : true, +2024-02-11T18:10:01.2961552Z "featuresInVersionResult" : true, +2024-02-11T18:10:01.2961950Z "indirectTracingSupportsStaticBinaries" : false, +2024-02-11T18:10:01.2962340Z "supportsPython312" : true, +2024-02-11T18:10:01.2962643Z "mrvaPackCreate" : true, +2024-02-11T18:10:01.2962926Z "threatModelOption" : true, +2024-02-11T18:10:01.2963215Z "v2ramSizing" : true, +2024-02-11T18:10:01.2963529Z "mrvaPackCreateMultipleQueries" : true, +2024-02-11T18:10:01.2963894Z "setsCodeqlRunnerEnvVar" : true +2024-02-11T18:10:01.2964179Z } +2024-02-11T18:10:01.2964362Z } +2024-02-11T18:10:01.3175970Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql version --format=json +2024-02-11T18:10:01.8128676Z { +2024-02-11T18:10:01.8129164Z "productName" : "CodeQL", +2024-02-11T18:10:01.8129667Z "vendor" : "GitHub", +2024-02-11T18:10:01.8130088Z "version" : "2.16.1", +2024-02-11T18:10:01.8130613Z "sha" : "be2c95041458fef8f75f3338dbbfac67491f98d5", +2024-02-11T18:10:01.8131236Z "branches" : [ +2024-02-11T18:10:01.8131866Z "codeql-cli-2.16.1" +2024-02-11T18:10:01.8132264Z ], +2024-02-11T18:10:01.8132802Z "copyright" : "Copyright (C) 2019-2024 GitHub, Inc.", +2024-02-11T18:10:01.8133689Z "unpackedLocation" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql", +2024-02-11T18:10:01.8134675Z "configFileLocation" : "/home/runner/.config/codeql/config", +2024-02-11T18:10:01.8135429Z "configFileFound" : false, +2024-02-11T18:10:01.8147818Z "features" : { +2024-02-11T18:10:01.8148370Z "analysisSummaryV2Option" : true, +2024-02-11T18:10:01.8148951Z "buildModeOption" : true, +2024-02-11T18:10:01.8149557Z "bundleSupportsIncludeDiagnostics" : true, +2024-02-11T18:10:01.8150339Z "featuresInVersionResult" : true, +2024-02-11T18:10:01.8151048Z "indirectTracingSupportsStaticBinaries" : false, +2024-02-11T18:10:01.8151771Z "supportsPython312" : true, +2024-02-11T18:10:01.8152306Z "mrvaPackCreate" : true, +2024-02-11T18:10:01.8152802Z "threatModelOption" : true, +2024-02-11T18:10:01.8168722Z "v2ramSizing" : true, +2024-02-11T18:10:01.8169251Z "mrvaPackCreateMultipleQueries" : true, +2024-02-11T18:10:01.8169644Z "setsCodeqlRunnerEnvVar" : true +2024-02-11T18:10:01.8169986Z } +2024-02-11T18:10:01.8170177Z } +2024-02-11T18:10:01.8336452Z ##[endgroup] +2024-02-11T18:10:01.8337172Z ##[group]Validating workflow +2024-02-11T18:10:01.8378672Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql resolve languages --format=betterjson --extractor-options-verbosity=4 --extractor-include-aliases +2024-02-11T18:10:02.9380982Z { +2024-02-11T18:10:02.9381777Z "aliases" : { +2024-02-11T18:10:02.9382470Z "c" : "cpp", +2024-02-11T18:10:02.9382911Z "c++" : "cpp", +2024-02-11T18:10:02.9383559Z "c-c++" : "cpp", +2024-02-11T18:10:02.9384031Z "c-cpp" : "cpp", +2024-02-11T18:10:02.9384469Z "c#" : "csharp", +2024-02-11T18:10:02.9409477Z "java-kotlin" : "java", +2024-02-11T18:10:02.9422622Z "kotlin" : "java", +2024-02-11T18:10:02.9423315Z "javascript-typescript" : "javascript", +2024-02-11T18:10:02.9425868Z "typescript" : "javascript" +2024-02-11T18:10:02.9426616Z }, +2024-02-11T18:10:02.9428510Z "extractors" : { +2024-02-11T18:10:02.9428903Z "xml" : [ +2024-02-11T18:10:02.9429331Z { +2024-02-11T18:10:02.9429922Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/xml" +2024-02-11T18:10:02.9430704Z } +2024-02-11T18:10:02.9430910Z ], +2024-02-11T18:10:02.9431135Z "javascript" : [ +2024-02-11T18:10:02.9431562Z { +2024-02-11T18:10:02.9432199Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/javascript", +2024-02-11T18:10:02.9432794Z "extractor_options" : { +2024-02-11T18:10:02.9433078Z "trap" : { +2024-02-11T18:10:02.9433338Z "title" : "TRAP options", +2024-02-11T18:10:02.9433787Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:02.9434237Z "type" : "object", +2024-02-11T18:10:02.9434526Z "visibility" : 3, +2024-02-11T18:10:02.9434801Z "properties" : { +2024-02-11T18:10:02.9435076Z "cache" : { +2024-02-11T18:10:02.9435561Z "title" : "TRAP cache options", +2024-02-11T18:10:02.9436067Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:02.9436540Z "type" : "object", +2024-02-11T18:10:02.9436841Z "properties" : { +2024-02-11T18:10:02.9437131Z "dir" : { +2024-02-11T18:10:02.9437454Z "title" : "TRAP cache directory", +2024-02-11T18:10:02.9437915Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:02.9438337Z "type" : "string" +2024-02-11T18:10:02.9438616Z }, +2024-02-11T18:10:02.9438848Z "bound" : { +2024-02-11T18:10:02.9439148Z "title" : "TRAP cache bound", +2024-02-11T18:10:02.9439614Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:02.9440076Z "type" : "string", +2024-02-11T18:10:02.9440487Z "pattern" : "[0-9]+" +2024-02-11T18:10:02.9440779Z }, +2024-02-11T18:10:02.9441010Z "write" : { +2024-02-11T18:10:02.9441468Z "title" : "TRAP cache writeable", +2024-02-11T18:10:02.9442661Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:02.9443194Z "type" : "string", +2024-02-11T18:10:02.9443549Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:02.9443880Z } +2024-02-11T18:10:02.9444099Z } +2024-02-11T18:10:02.9444310Z } +2024-02-11T18:10:02.9444512Z } +2024-02-11T18:10:02.9444715Z }, +2024-02-11T18:10:02.9444929Z "skip_types" : { +2024-02-11T18:10:02.9445260Z "title" : "Skip type extraction for TypeScript", +2024-02-11T18:10:02.9446002Z "description" : "Whether to skip the extraction of types in a TypeScript application", +2024-02-11T18:10:02.9446516Z "type" : "string", +2024-02-11T18:10:02.9446803Z "pattern" : "^(false|true)$" +2024-02-11T18:10:02.9447104Z } +2024-02-11T18:10:02.9447299Z } +2024-02-11T18:10:02.9447485Z } +2024-02-11T18:10:02.9447669Z ], +2024-02-11T18:10:02.9447868Z "go" : [ +2024-02-11T18:10:02.9448063Z { +2024-02-11T18:10:02.9448414Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/go" +2024-02-11T18:10:02.9448839Z } +2024-02-11T18:10:02.9449023Z ], +2024-02-11T18:10:02.9449211Z "python" : [ +2024-02-11T18:10:02.9449429Z { +2024-02-11T18:10:02.9449779Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python", +2024-02-11T18:10:02.9450242Z "extractor_options" : { +2024-02-11T18:10:02.9450524Z "logging" : { +2024-02-11T18:10:02.9450829Z "title" : "Options pertaining to logging.", +2024-02-11T18:10:02.9451262Z "description" : "Options pertaining to logging.", +2024-02-11T18:10:02.9451637Z "type" : "object", +2024-02-11T18:10:02.9451913Z "properties" : { +2024-02-11T18:10:02.9452177Z "verbosity" : { +2024-02-11T18:10:02.9452537Z "title" : "Python extractor logging verbosity level.", +2024-02-11T18:10:02.9454120Z "description" : "Controls the level of verbosity of the CodeQL Python extractor.\nThe supported levels are (in order of increasing verbosity):\n\n - off\n - errors\n - warnings\n - info or progress\n - debug or progress+\n - trace or progress++\n - progress+++\n", +2024-02-11T18:10:02.9456475Z "type" : "string", +2024-02-11T18:10:02.9457558Z "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$" +2024-02-11T18:10:02.9458637Z } +2024-02-11T18:10:02.9459053Z } +2024-02-11T18:10:02.9459425Z } +2024-02-11T18:10:02.9459789Z } +2024-02-11T18:10:02.9460138Z } +2024-02-11T18:10:02.9460450Z ], +2024-02-11T18:10:02.9460810Z "properties" : [ +2024-02-11T18:10:02.9461211Z { +2024-02-11T18:10:02.9461872Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/properties" +2024-02-11T18:10:02.9462723Z } +2024-02-11T18:10:02.9463050Z ], +2024-02-11T18:10:02.9463370Z "ruby" : [ +2024-02-11T18:10:02.9463747Z { +2024-02-11T18:10:02.9464225Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/ruby", +2024-02-11T18:10:02.9464697Z "extractor_options" : { +2024-02-11T18:10:02.9464981Z "trap" : { +2024-02-11T18:10:02.9465270Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:02.9465698Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:02.9466071Z "type" : "object", +2024-02-11T18:10:02.9466354Z "properties" : { +2024-02-11T18:10:02.9466631Z "compression" : { +2024-02-11T18:10:02.9467098Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:02.9468441Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'gzip' (the default, to write gzip-compressed TRAP) and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:02.9469630Z "type" : "string", +2024-02-11T18:10:02.9469965Z "pattern" : "^(none|gzip)$" +2024-02-11T18:10:02.9470277Z } +2024-02-11T18:10:02.9470485Z } +2024-02-11T18:10:02.9470688Z } +2024-02-11T18:10:02.9470883Z } +2024-02-11T18:10:02.9471069Z } +2024-02-11T18:10:02.9471251Z ], +2024-02-11T18:10:02.9471443Z "csharp" : [ +2024-02-11T18:10:02.9471651Z { +2024-02-11T18:10:02.9472006Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csharp", +2024-02-11T18:10:02.9472585Z "extractor_options" : { +2024-02-11T18:10:02.9472856Z "trap" : { +2024-02-11T18:10:02.9473141Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:02.9473557Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:02.9473916Z "type" : "object", +2024-02-11T18:10:02.9474196Z "properties" : { +2024-02-11T18:10:02.9474468Z "compression" : { +2024-02-11T18:10:02.9474928Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:02.9476537Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'brotli' (the default, to write brotli-compressed TRAP), 'gzip', and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:02.9477544Z "type" : "string", +2024-02-11T18:10:02.9477866Z "pattern" : "^(none|gzip|brotli)$" +2024-02-11T18:10:02.9478202Z } +2024-02-11T18:10:02.9478409Z } +2024-02-11T18:10:02.9478603Z }, +2024-02-11T18:10:02.9478818Z "buildless" : { +2024-02-11T18:10:02.9479201Z "title" : "Whether to use buildless (standalone) extraction.", +2024-02-11T18:10:02.9481486Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:02.9483356Z "type" : "string", +2024-02-11T18:10:02.9483653Z "pattern" : "^(false|true)$" +2024-02-11T18:10:02.9483954Z }, +2024-02-11T18:10:02.9484158Z "cil" : { +2024-02-11T18:10:02.9484456Z "title" : "Whether to enable CIL extraction.", +2024-02-11T18:10:02.9485179Z "description" : "A value indicating, whether CIL extraction should be enabled. The default is 'true'.\n", +2024-02-11T18:10:02.9485755Z "type" : "string", +2024-02-11T18:10:02.9486044Z "pattern" : "^(false|true)$" +2024-02-11T18:10:02.9486345Z } +2024-02-11T18:10:02.9486536Z } +2024-02-11T18:10:02.9486726Z } +2024-02-11T18:10:02.9486912Z ], +2024-02-11T18:10:02.9487108Z "html" : [ +2024-02-11T18:10:02.9487321Z { +2024-02-11T18:10:02.9487665Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/html" +2024-02-11T18:10:02.9488089Z } +2024-02-11T18:10:02.9488276Z ], +2024-02-11T18:10:02.9488465Z "java" : [ +2024-02-11T18:10:02.9488666Z { +2024-02-11T18:10:02.9489016Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/java", +2024-02-11T18:10:02.9489472Z "extractor_options" : { +2024-02-11T18:10:02.9489756Z "exclude" : { +2024-02-11T18:10:02.9490087Z "title" : "A glob excluding files from analysis.", +2024-02-11T18:10:02.9490648Z "description" : "A glob indicating what files to exclude from the analysis.\n", +2024-02-11T18:10:02.9491129Z "type" : "string" +2024-02-11T18:10:02.9491390Z }, +2024-02-11T18:10:02.9491618Z "add_prefer_source" : { +2024-02-11T18:10:02.9492194Z "title" : "Whether to always prefer source files over class files.", +2024-02-11T18:10:02.9494424Z "description" : "A value indicating whether source files should be preferred over class files. If set to 'true', the extraction adds '-Xprefer:source' to the javac command line. If set to 'false', the extraction uses the default javac behavior ('-Xprefer:newer'). The default is 'true'.\n", +2024-02-11T18:10:02.9495837Z "type" : "string", +2024-02-11T18:10:02.9496133Z "pattern" : "^(false|true)$" +2024-02-11T18:10:02.9496431Z }, +2024-02-11T18:10:02.9496647Z "buildless" : { +2024-02-11T18:10:02.9497310Z "title" : "Whether to use buildless (standalone) extraction (experimental).", +2024-02-11T18:10:02.9499665Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:02.9501549Z "type" : "string", +2024-02-11T18:10:02.9501844Z "pattern" : "^(false|true)$" +2024-02-11T18:10:02.9502148Z } +2024-02-11T18:10:02.9502338Z } +2024-02-11T18:10:02.9502530Z } +2024-02-11T18:10:02.9502720Z ], +2024-02-11T18:10:02.9502906Z "yaml" : [ +2024-02-11T18:10:02.9503115Z { +2024-02-11T18:10:02.9503459Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/yaml" +2024-02-11T18:10:02.9504183Z } +2024-02-11T18:10:02.9504499Z ], +2024-02-11T18:10:02.9504825Z "swift" : [ +2024-02-11T18:10:02.9505179Z { +2024-02-11T18:10:02.9505590Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/swift" +2024-02-11T18:10:02.9506026Z } +2024-02-11T18:10:02.9506203Z ], +2024-02-11T18:10:02.9506393Z "cpp" : [ +2024-02-11T18:10:02.9506596Z { +2024-02-11T18:10:02.9506932Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/cpp", +2024-02-11T18:10:02.9507380Z "extractor_options" : { +2024-02-11T18:10:02.9507654Z "trap" : { +2024-02-11T18:10:02.9507914Z "title" : "TRAP options", +2024-02-11T18:10:02.9508366Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:02.9508811Z "type" : "object", +2024-02-11T18:10:02.9509082Z "visibility" : 3, +2024-02-11T18:10:02.9509376Z "properties" : { +2024-02-11T18:10:02.9509647Z "cache" : { +2024-02-11T18:10:02.9509939Z "title" : "TRAP cache options", +2024-02-11T18:10:02.9510421Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:02.9510882Z "type" : "object", +2024-02-11T18:10:02.9511175Z "properties" : { +2024-02-11T18:10:02.9511452Z "dir" : { +2024-02-11T18:10:02.9511763Z "title" : "TRAP cache directory", +2024-02-11T18:10:02.9512232Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:02.9512802Z "type" : "string" +2024-02-11T18:10:02.9513287Z }, +2024-02-11T18:10:02.9513681Z "bound" : { +2024-02-11T18:10:02.9514165Z "title" : "TRAP cache bound", +2024-02-11T18:10:02.9514952Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:02.9515924Z "type" : "string", +2024-02-11T18:10:02.9516554Z "pattern" : "[0-9]+" +2024-02-11T18:10:02.9517049Z }, +2024-02-11T18:10:02.9517436Z "write" : { +2024-02-11T18:10:02.9517937Z "title" : "TRAP cache writeable", +2024-02-11T18:10:02.9518799Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:02.9519868Z "type" : "string", +2024-02-11T18:10:02.9520481Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:02.9521046Z } +2024-02-11T18:10:02.9521400Z } +2024-02-11T18:10:02.9521618Z } +2024-02-11T18:10:02.9521822Z } +2024-02-11T18:10:02.9522024Z } +2024-02-11T18:10:02.9522221Z } +2024-02-11T18:10:02.9522406Z } +2024-02-11T18:10:02.9522591Z ], +2024-02-11T18:10:02.9522781Z "csv" : [ +2024-02-11T18:10:02.9523129Z { +2024-02-11T18:10:02.9523492Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csv" +2024-02-11T18:10:02.9523931Z } +2024-02-11T18:10:02.9524200Z ] +2024-02-11T18:10:02.9524510Z } +2024-02-11T18:10:02.9524802Z } +2024-02-11T18:10:02.9525235Z Detected no issues with the code scanning workflow. +2024-02-11T18:10:02.9527351Z ##[endgroup] +2024-02-11T18:10:02.9527870Z ##[group]Load language configuration +2024-02-11T18:10:02.9529156Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql resolve languages --format=betterjson --extractor-options-verbosity=4 --extractor-include-aliases +2024-02-11T18:10:03.7124618Z { +2024-02-11T18:10:03.7125047Z "aliases" : { +2024-02-11T18:10:03.7125516Z "c" : "cpp", +2024-02-11T18:10:03.7125899Z "c++" : "cpp", +2024-02-11T18:10:03.7126508Z "c-c++" : "cpp", +2024-02-11T18:10:03.7126957Z "c-cpp" : "cpp", +2024-02-11T18:10:03.7127347Z "c#" : "csharp", +2024-02-11T18:10:03.7127786Z "java-kotlin" : "java", +2024-02-11T18:10:03.7128262Z "kotlin" : "java", +2024-02-11T18:10:03.7128813Z "javascript-typescript" : "javascript", +2024-02-11T18:10:03.7129396Z "typescript" : "javascript" +2024-02-11T18:10:03.7129846Z }, +2024-02-11T18:10:03.7130170Z "extractors" : { +2024-02-11T18:10:03.7130536Z "xml" : [ +2024-02-11T18:10:03.7130877Z { +2024-02-11T18:10:03.7131451Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/xml" +2024-02-11T18:10:03.7132221Z } +2024-02-11T18:10:03.7132610Z ], +2024-02-11T18:10:03.7132944Z "javascript" : [ +2024-02-11T18:10:03.7133346Z { +2024-02-11T18:10:03.7133982Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/javascript", +2024-02-11T18:10:03.7134784Z "extractor_options" : { +2024-02-11T18:10:03.7135209Z "trap" : { +2024-02-11T18:10:03.7135586Z "title" : "TRAP options", +2024-02-11T18:10:03.7136259Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:03.7137053Z "type" : "object", +2024-02-11T18:10:03.7137556Z "visibility" : 3, +2024-02-11T18:10:03.7138064Z "properties" : { +2024-02-11T18:10:03.7138554Z "cache" : { +2024-02-11T18:10:03.7139070Z "title" : "TRAP cache options", +2024-02-11T18:10:03.7139950Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:03.7140724Z "type" : "object", +2024-02-11T18:10:03.7141275Z "properties" : { +2024-02-11T18:10:03.7141780Z "dir" : { +2024-02-11T18:10:03.7142313Z "title" : "TRAP cache directory", +2024-02-11T18:10:03.7143116Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:03.7143860Z "type" : "string" +2024-02-11T18:10:03.7144367Z }, +2024-02-11T18:10:03.7144771Z "bound" : { +2024-02-11T18:10:03.7145260Z "title" : "TRAP cache bound", +2024-02-11T18:10:03.7146021Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:03.7146797Z "type" : "string", +2024-02-11T18:10:03.7147518Z "pattern" : "[0-9]+" +2024-02-11T18:10:03.7148052Z }, +2024-02-11T18:10:03.7148488Z "write" : { +2024-02-11T18:10:03.7149033Z "title" : "TRAP cache writeable", +2024-02-11T18:10:03.7150374Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:03.7151204Z "type" : "string", +2024-02-11T18:10:03.7151748Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:03.7152350Z } +2024-02-11T18:10:03.7152741Z } +2024-02-11T18:10:03.7153138Z } +2024-02-11T18:10:03.7153518Z } +2024-02-11T18:10:03.7153892Z }, +2024-02-11T18:10:03.7154269Z "skip_types" : { +2024-02-11T18:10:03.7155780Z "title" : "Skip type extraction for TypeScript", +2024-02-11T18:10:03.7156842Z "description" : "Whether to skip the extraction of types in a TypeScript application", +2024-02-11T18:10:03.7157819Z "type" : "string", +2024-02-11T18:10:03.7158407Z "pattern" : "^(false|true)$" +2024-02-11T18:10:03.7158900Z } +2024-02-11T18:10:03.7159249Z } +2024-02-11T18:10:03.7159584Z } +2024-02-11T18:10:03.7159932Z ], +2024-02-11T18:10:03.7160283Z "go" : [ +2024-02-11T18:10:03.7160633Z { +2024-02-11T18:10:03.7161232Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/go" +2024-02-11T18:10:03.7162005Z } +2024-02-11T18:10:03.7162346Z ], +2024-02-11T18:10:03.7162710Z "python" : [ +2024-02-11T18:10:03.7163103Z { +2024-02-11T18:10:03.7163707Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python", +2024-02-11T18:10:03.7164530Z "extractor_options" : { +2024-02-11T18:10:03.7165034Z "logging" : { +2024-02-11T18:10:03.7165575Z "title" : "Options pertaining to logging.", +2024-02-11T18:10:03.7166357Z "description" : "Options pertaining to logging.", +2024-02-11T18:10:03.7167023Z "type" : "object", +2024-02-11T18:10:03.7167513Z "properties" : { +2024-02-11T18:10:03.7167989Z "verbosity" : { +2024-02-11T18:10:03.7168638Z "title" : "Python extractor logging verbosity level.", +2024-02-11T18:10:03.7171366Z "description" : "Controls the level of verbosity of the CodeQL Python extractor.\nThe supported levels are (in order of increasing verbosity):\n\n - off\n - errors\n - warnings\n - info or progress\n - debug or progress+\n - trace or progress++\n - progress+++\n", +2024-02-11T18:10:03.7173707Z "type" : "string", +2024-02-11T18:10:03.7174790Z "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$" +2024-02-11T18:10:03.7175925Z } +2024-02-11T18:10:03.7176306Z } +2024-02-11T18:10:03.7176675Z } +2024-02-11T18:10:03.7177027Z } +2024-02-11T18:10:03.7177362Z } +2024-02-11T18:10:03.7177689Z ], +2024-02-11T18:10:03.7178046Z "properties" : [ +2024-02-11T18:10:03.7178454Z { +2024-02-11T18:10:03.7179111Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/properties" +2024-02-11T18:10:03.7179969Z } +2024-02-11T18:10:03.7180300Z ], +2024-02-11T18:10:03.7180638Z "ruby" : [ +2024-02-11T18:10:03.7180998Z { +2024-02-11T18:10:03.7181610Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/ruby", +2024-02-11T18:10:03.7182436Z "extractor_options" : { +2024-02-11T18:10:03.7182926Z "trap" : { +2024-02-11T18:10:03.7183415Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:03.7184170Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:03.7184837Z "type" : "object", +2024-02-11T18:10:03.7185327Z "properties" : { +2024-02-11T18:10:03.7185850Z "compression" : { +2024-02-11T18:10:03.7186681Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:03.7189378Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'gzip' (the default, to write gzip-compressed TRAP) and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:03.7191220Z "type" : "string", +2024-02-11T18:10:03.7191801Z "pattern" : "^(none|gzip)$" +2024-02-11T18:10:03.7192361Z } +2024-02-11T18:10:03.7192741Z } +2024-02-11T18:10:03.7193118Z } +2024-02-11T18:10:03.7193452Z } +2024-02-11T18:10:03.7193801Z } +2024-02-11T18:10:03.7194124Z ], +2024-02-11T18:10:03.7194461Z "csharp" : [ +2024-02-11T18:10:03.7194855Z { +2024-02-11T18:10:03.7195887Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csharp", +2024-02-11T18:10:03.7196996Z "extractor_options" : { +2024-02-11T18:10:03.7197472Z "trap" : { +2024-02-11T18:10:03.7197788Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:03.7198219Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:03.7198607Z "type" : "object", +2024-02-11T18:10:03.7198897Z "properties" : { +2024-02-11T18:10:03.7199183Z "compression" : { +2024-02-11T18:10:03.7199654Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:03.7201054Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'brotli' (the default, to write brotli-compressed TRAP), 'gzip', and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:03.7202061Z "type" : "string", +2024-02-11T18:10:03.7202389Z "pattern" : "^(none|gzip|brotli)$" +2024-02-11T18:10:03.7202732Z } +2024-02-11T18:10:03.7202945Z } +2024-02-11T18:10:03.7203144Z }, +2024-02-11T18:10:03.7203362Z "buildless" : { +2024-02-11T18:10:03.7203746Z "title" : "Whether to use buildless (standalone) extraction.", +2024-02-11T18:10:03.7206034Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:03.7207909Z "type" : "string", +2024-02-11T18:10:03.7208254Z "pattern" : "^(false|true)$" +2024-02-11T18:10:03.7208559Z }, +2024-02-11T18:10:03.7208762Z "cil" : { +2024-02-11T18:10:03.7209067Z "title" : "Whether to enable CIL extraction.", +2024-02-11T18:10:03.7209800Z "description" : "A value indicating, whether CIL extraction should be enabled. The default is 'true'.\n", +2024-02-11T18:10:03.7210381Z "type" : "string", +2024-02-11T18:10:03.7210668Z "pattern" : "^(false|true)$" +2024-02-11T18:10:03.7210968Z } +2024-02-11T18:10:03.7211169Z } +2024-02-11T18:10:03.7211373Z } +2024-02-11T18:10:03.7211564Z ], +2024-02-11T18:10:03.7211754Z "html" : [ +2024-02-11T18:10:03.7211970Z { +2024-02-11T18:10:03.7212320Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/html" +2024-02-11T18:10:03.7212751Z } +2024-02-11T18:10:03.7212939Z ], +2024-02-11T18:10:03.7213134Z "java" : [ +2024-02-11T18:10:03.7213338Z { +2024-02-11T18:10:03.7213687Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/java", +2024-02-11T18:10:03.7214148Z "extractor_options" : { +2024-02-11T18:10:03.7214437Z "exclude" : { +2024-02-11T18:10:03.7214770Z "title" : "A glob excluding files from analysis.", +2024-02-11T18:10:03.7215336Z "description" : "A glob indicating what files to exclude from the analysis.\n", +2024-02-11T18:10:03.7215819Z "type" : "string" +2024-02-11T18:10:03.7216094Z }, +2024-02-11T18:10:03.7216322Z "add_prefer_source" : { +2024-02-11T18:10:03.7216921Z "title" : "Whether to always prefer source files over class files.", +2024-02-11T18:10:03.7218567Z "description" : "A value indicating whether source files should be preferred over class files. If set to 'true', the extraction adds '-Xprefer:source' to the javac command line. If set to 'false', the extraction uses the default javac behavior ('-Xprefer:newer'). The default is 'true'.\n", +2024-02-11T18:10:03.7219859Z "type" : "string", +2024-02-11T18:10:03.7220158Z "pattern" : "^(false|true)$" +2024-02-11T18:10:03.7220574Z }, +2024-02-11T18:10:03.7220796Z "buildless" : { +2024-02-11T18:10:03.7221229Z "title" : "Whether to use buildless (standalone) extraction (experimental).", +2024-02-11T18:10:03.7223564Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:03.7225446Z "type" : "string", +2024-02-11T18:10:03.7225740Z "pattern" : "^(false|true)$" +2024-02-11T18:10:03.7226041Z } +2024-02-11T18:10:03.7226234Z } +2024-02-11T18:10:03.7226429Z } +2024-02-11T18:10:03.7226618Z ], +2024-02-11T18:10:03.7226807Z "yaml" : [ +2024-02-11T18:10:03.7227025Z { +2024-02-11T18:10:03.7227374Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/yaml" +2024-02-11T18:10:03.7227803Z } +2024-02-11T18:10:03.7227988Z ], +2024-02-11T18:10:03.7228181Z "swift" : [ +2024-02-11T18:10:03.7228389Z { +2024-02-11T18:10:03.7228733Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/swift" +2024-02-11T18:10:03.7229164Z } +2024-02-11T18:10:03.7229342Z ], +2024-02-11T18:10:03.7229538Z "cpp" : [ +2024-02-11T18:10:03.7229745Z { +2024-02-11T18:10:03.7230075Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/cpp", +2024-02-11T18:10:03.7230521Z "extractor_options" : { +2024-02-11T18:10:03.7230801Z "trap" : { +2024-02-11T18:10:03.7231053Z "title" : "TRAP options", +2024-02-11T18:10:03.7231498Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:03.7231949Z "type" : "object", +2024-02-11T18:10:03.7232229Z "visibility" : 3, +2024-02-11T18:10:03.7232563Z "properties" : { +2024-02-11T18:10:03.7232831Z "cache" : { +2024-02-11T18:10:03.7233115Z "title" : "TRAP cache options", +2024-02-11T18:10:03.7233607Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:03.7234073Z "type" : "object", +2024-02-11T18:10:03.7234370Z "properties" : { +2024-02-11T18:10:03.7234653Z "dir" : { +2024-02-11T18:10:03.7234959Z "title" : "TRAP cache directory", +2024-02-11T18:10:03.7235628Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:03.7236049Z "type" : "string" +2024-02-11T18:10:03.7236338Z }, +2024-02-11T18:10:03.7236570Z "bound" : { +2024-02-11T18:10:03.7236868Z "title" : "TRAP cache bound", +2024-02-11T18:10:03.7237345Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:03.7237817Z "type" : "string", +2024-02-11T18:10:03.7238194Z "pattern" : "[0-9]+" +2024-02-11T18:10:03.7238494Z }, +2024-02-11T18:10:03.7238726Z "write" : { +2024-02-11T18:10:03.7239041Z "title" : "TRAP cache writeable", +2024-02-11T18:10:03.7239713Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:03.7240195Z "type" : "string", +2024-02-11T18:10:03.7240546Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:03.7240886Z } +2024-02-11T18:10:03.7241104Z } +2024-02-11T18:10:03.7241321Z } +2024-02-11T18:10:03.7241531Z } +2024-02-11T18:10:03.7241735Z } +2024-02-11T18:10:03.7241934Z } +2024-02-11T18:10:03.7242129Z } +2024-02-11T18:10:03.7242309Z ], +2024-02-11T18:10:03.7242895Z "csv" : [ +2024-02-11T18:10:03.7243097Z { +2024-02-11T18:10:03.7243433Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csv" +2024-02-11T18:10:03.7243869Z } +2024-02-11T18:10:03.7244054Z ] +2024-02-11T18:10:03.7244233Z } +2024-02-11T18:10:03.7244415Z } +2024-02-11T18:10:03.7384620Z Languages from configuration: python +2024-02-11T18:10:03.7391824Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql resolve languages --format=betterjson --extractor-options-verbosity=4 --extractor-include-aliases +2024-02-11T18:10:04.4701685Z { +2024-02-11T18:10:04.4702516Z "aliases" : { +2024-02-11T18:10:04.4703266Z "c" : "cpp", +2024-02-11T18:10:04.4703790Z "c++" : "cpp", +2024-02-11T18:10:04.4704533Z "c-c++" : "cpp", +2024-02-11T18:10:04.4705311Z "c-cpp" : "cpp", +2024-02-11T18:10:04.4705760Z "c#" : "csharp", +2024-02-11T18:10:04.4706251Z "java-kotlin" : "java", +2024-02-11T18:10:04.4706730Z "kotlin" : "java", +2024-02-11T18:10:04.4707313Z "javascript-typescript" : "javascript", +2024-02-11T18:10:04.4707926Z "typescript" : "javascript" +2024-02-11T18:10:04.4708399Z }, +2024-02-11T18:10:04.4708722Z "extractors" : { +2024-02-11T18:10:04.4709107Z "xml" : [ +2024-02-11T18:10:04.4709460Z { +2024-02-11T18:10:04.4710044Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/xml" +2024-02-11T18:10:04.4710808Z } +2024-02-11T18:10:04.4711114Z ], +2024-02-11T18:10:04.4711459Z "javascript" : [ +2024-02-11T18:10:04.4711904Z { +2024-02-11T18:10:04.4712721Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/javascript", +2024-02-11T18:10:04.4713731Z "extractor_options" : { +2024-02-11T18:10:04.4714303Z "trap" : { +2024-02-11T18:10:04.4714784Z "title" : "TRAP options", +2024-02-11T18:10:04.4715775Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:04.4716577Z "type" : "object", +2024-02-11T18:10:04.4717070Z "visibility" : 3, +2024-02-11T18:10:04.4717546Z "properties" : { +2024-02-11T18:10:04.4718004Z "cache" : { +2024-02-11T18:10:04.4718573Z "title" : "TRAP cache options", +2024-02-11T18:10:04.4719434Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:04.4720269Z "type" : "object", +2024-02-11T18:10:04.4720789Z "properties" : { +2024-02-11T18:10:04.4721276Z "dir" : { +2024-02-11T18:10:04.4721788Z "title" : "TRAP cache directory", +2024-02-11T18:10:04.4722572Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:04.4723299Z "type" : "string" +2024-02-11T18:10:04.4723784Z }, +2024-02-11T18:10:04.4724175Z "bound" : { +2024-02-11T18:10:04.4724682Z "title" : "TRAP cache bound", +2024-02-11T18:10:04.4725500Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:04.4726312Z "type" : "string", +2024-02-11T18:10:04.4726962Z "pattern" : "[0-9]+" +2024-02-11T18:10:04.4727484Z }, +2024-02-11T18:10:04.4727879Z "write" : { +2024-02-11T18:10:04.4728406Z "title" : "TRAP cache writeable", +2024-02-11T18:10:04.4729767Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:04.4730721Z "type" : "string", +2024-02-11T18:10:04.4731336Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:04.4731922Z } +2024-02-11T18:10:04.4732295Z } +2024-02-11T18:10:04.4732653Z } +2024-02-11T18:10:04.4733006Z } +2024-02-11T18:10:04.4733346Z }, +2024-02-11T18:10:04.4733707Z "skip_types" : { +2024-02-11T18:10:04.4734262Z "title" : "Skip type extraction for TypeScript", +2024-02-11T18:10:04.4735488Z "description" : "Whether to skip the extraction of types in a TypeScript application", +2024-02-11T18:10:04.4736398Z "type" : "string", +2024-02-11T18:10:04.4736891Z "pattern" : "^(false|true)$" +2024-02-11T18:10:04.4737398Z } +2024-02-11T18:10:04.4737728Z } +2024-02-11T18:10:04.4738052Z } +2024-02-11T18:10:04.4738357Z ], +2024-02-11T18:10:04.4738695Z "go" : [ +2024-02-11T18:10:04.4739037Z { +2024-02-11T18:10:04.4739594Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/go" +2024-02-11T18:10:04.4740326Z } +2024-02-11T18:10:04.4740636Z ], +2024-02-11T18:10:04.4740958Z "python" : [ +2024-02-11T18:10:04.4741314Z { +2024-02-11T18:10:04.4741901Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python", +2024-02-11T18:10:04.4742701Z "extractor_options" : { +2024-02-11T18:10:04.4743170Z "logging" : { +2024-02-11T18:10:04.4743677Z "title" : "Options pertaining to logging.", +2024-02-11T18:10:04.4744426Z "description" : "Options pertaining to logging.", +2024-02-11T18:10:04.4745078Z "type" : "object", +2024-02-11T18:10:04.4745560Z "properties" : { +2024-02-11T18:10:04.4746018Z "verbosity" : { +2024-02-11T18:10:04.4746629Z "title" : "Python extractor logging verbosity level.", +2024-02-11T18:10:04.4749384Z "description" : "Controls the level of verbosity of the CodeQL Python extractor.\nThe supported levels are (in order of increasing verbosity):\n\n - off\n - errors\n - warnings\n - info or progress\n - debug or progress+\n - trace or progress++\n - progress+++\n", +2024-02-11T18:10:04.4752934Z "type" : "string", +2024-02-11T18:10:04.4753992Z "pattern" : "^(off|errors|warnings|(info|progress)|(debug|progress\\+)|(trace|progress\\+\\+)|progress\\+\\+\\+)$" +2024-02-11T18:10:04.4755028Z } +2024-02-11T18:10:04.4755607Z } +2024-02-11T18:10:04.4755954Z } +2024-02-11T18:10:04.4756280Z } +2024-02-11T18:10:04.4756594Z } +2024-02-11T18:10:04.4756905Z ], +2024-02-11T18:10:04.4757243Z "properties" : [ +2024-02-11T18:10:04.4757631Z { +2024-02-11T18:10:04.4758270Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/properties" +2024-02-11T18:10:04.4759128Z } +2024-02-11T18:10:04.4759430Z ], +2024-02-11T18:10:04.4759755Z "ruby" : [ +2024-02-11T18:10:04.4760114Z { +2024-02-11T18:10:04.4760695Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/ruby", +2024-02-11T18:10:04.4761487Z "extractor_options" : { +2024-02-11T18:10:04.4761960Z "trap" : { +2024-02-11T18:10:04.4762437Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:04.4763154Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:04.4763798Z "type" : "object", +2024-02-11T18:10:04.4764283Z "properties" : { +2024-02-11T18:10:04.4764755Z "compression" : { +2024-02-11T18:10:04.4765554Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:04.4767859Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'gzip' (the default, to write gzip-compressed TRAP) and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:04.4769804Z "type" : "string", +2024-02-11T18:10:04.4770356Z "pattern" : "^(none|gzip)$" +2024-02-11T18:10:04.4770892Z } +2024-02-11T18:10:04.4771240Z } +2024-02-11T18:10:04.4771586Z } +2024-02-11T18:10:04.4771908Z } +2024-02-11T18:10:04.4772239Z } +2024-02-11T18:10:04.4772553Z ], +2024-02-11T18:10:04.4772872Z "csharp" : [ +2024-02-11T18:10:04.4773241Z { +2024-02-11T18:10:04.4773857Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csharp", +2024-02-11T18:10:04.4774859Z "extractor_options" : { +2024-02-11T18:10:04.4775332Z "trap" : { +2024-02-11T18:10:04.4775822Z "title" : "Options pertaining to TRAP.", +2024-02-11T18:10:04.4776529Z "description" : "Options pertaining to TRAP.", +2024-02-11T18:10:04.4777159Z "type" : "object", +2024-02-11T18:10:04.4777628Z "properties" : { +2024-02-11T18:10:04.4778093Z "compression" : { +2024-02-11T18:10:04.4778892Z "title" : "Controls compression for the TRAP files written by the extractor.", +2024-02-11T18:10:04.4781276Z "description" : "This option is only intended for use in debugging the extractor. Accepted values are 'brotli' (the default, to write brotli-compressed TRAP), 'gzip', and 'none' (to write uncompressed TRAP).\n", +2024-02-11T18:10:04.4783100Z "type" : "string", +2024-02-11T18:10:04.4783653Z "pattern" : "^(none|gzip|brotli)$" +2024-02-11T18:10:04.4784237Z } +2024-02-11T18:10:04.4784589Z } +2024-02-11T18:10:04.4784926Z }, +2024-02-11T18:10:04.4785290Z "buildless" : { +2024-02-11T18:10:04.4785926Z "title" : "Whether to use buildless (standalone) extraction.", +2024-02-11T18:10:04.4790111Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:04.4792352Z "type" : "string", +2024-02-11T18:10:04.4792660Z "pattern" : "^(false|true)$" +2024-02-11T18:10:04.4792961Z }, +2024-02-11T18:10:04.4793159Z "cil" : { +2024-02-11T18:10:04.4793458Z "title" : "Whether to enable CIL extraction.", +2024-02-11T18:10:04.4794200Z "description" : "A value indicating, whether CIL extraction should be enabled. The default is 'true'.\n", +2024-02-11T18:10:04.4794778Z "type" : "string", +2024-02-11T18:10:04.4795072Z "pattern" : "^(false|true)$" +2024-02-11T18:10:04.4795569Z } +2024-02-11T18:10:04.4795762Z } +2024-02-11T18:10:04.4795952Z } +2024-02-11T18:10:04.4796132Z ], +2024-02-11T18:10:04.4796321Z "html" : [ +2024-02-11T18:10:04.4796532Z { +2024-02-11T18:10:04.4796881Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/html" +2024-02-11T18:10:04.4797318Z } +2024-02-11T18:10:04.4797503Z ], +2024-02-11T18:10:04.4797701Z "java" : [ +2024-02-11T18:10:04.4797903Z { +2024-02-11T18:10:04.4798248Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/java", +2024-02-11T18:10:04.4798705Z "extractor_options" : { +2024-02-11T18:10:04.4798983Z "exclude" : { +2024-02-11T18:10:04.4799315Z "title" : "A glob excluding files from analysis.", +2024-02-11T18:10:04.4799886Z "description" : "A glob indicating what files to exclude from the analysis.\n", +2024-02-11T18:10:04.4800379Z "type" : "string" +2024-02-11T18:10:04.4800637Z }, +2024-02-11T18:10:04.4800860Z "add_prefer_source" : { +2024-02-11T18:10:04.4801448Z "title" : "Whether to always prefer source files over class files.", +2024-02-11T18:10:04.4803103Z "description" : "A value indicating whether source files should be preferred over class files. If set to 'true', the extraction adds '-Xprefer:source' to the javac command line. If set to 'false', the extraction uses the default javac behavior ('-Xprefer:newer'). The default is 'true'.\n", +2024-02-11T18:10:04.4804417Z "type" : "string", +2024-02-11T18:10:04.4804702Z "pattern" : "^(false|true)$" +2024-02-11T18:10:04.4805006Z }, +2024-02-11T18:10:04.4805358Z "buildless" : { +2024-02-11T18:10:04.4805789Z "title" : "Whether to use buildless (standalone) extraction (experimental).", +2024-02-11T18:10:04.4808137Z "description" : "A value indicating, which type of extraction the autobuilder should perform. If 'true', then the standalone extractor will be used, otherwise tracing extraction will be performed. The default is 'false'. Note that buildless extraction will generally yield less accurate analysis results, and should only be used in cases where it is not possible to build the code (for example if it uses inaccessible dependencies).\n", +2024-02-11T18:10:04.4810032Z "type" : "string", +2024-02-11T18:10:04.4810322Z "pattern" : "^(false|true)$" +2024-02-11T18:10:04.4810616Z } +2024-02-11T18:10:04.4810810Z } +2024-02-11T18:10:04.4811000Z } +2024-02-11T18:10:04.4811175Z ], +2024-02-11T18:10:04.4811361Z "yaml" : [ +2024-02-11T18:10:04.4811564Z { +2024-02-11T18:10:04.4811905Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/yaml" +2024-02-11T18:10:04.4812340Z } +2024-02-11T18:10:04.4812518Z ], +2024-02-11T18:10:04.4812698Z "swift" : [ +2024-02-11T18:10:04.4812903Z { +2024-02-11T18:10:04.4813238Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/swift" +2024-02-11T18:10:04.4813659Z } +2024-02-11T18:10:04.4813835Z ], +2024-02-11T18:10:04.4814020Z "cpp" : [ +2024-02-11T18:10:04.4814217Z { +2024-02-11T18:10:04.4814546Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/cpp", +2024-02-11T18:10:04.4814994Z "extractor_options" : { +2024-02-11T18:10:04.4815265Z "trap" : { +2024-02-11T18:10:04.4815519Z "title" : "TRAP options", +2024-02-11T18:10:04.4815965Z "description" : "Options about how the extractor handles TRAP files", +2024-02-11T18:10:04.4816400Z "type" : "object", +2024-02-11T18:10:04.4816671Z "visibility" : 3, +2024-02-11T18:10:04.4816949Z "properties" : { +2024-02-11T18:10:04.4817203Z "cache" : { +2024-02-11T18:10:04.4817489Z "title" : "TRAP cache options", +2024-02-11T18:10:04.4817975Z "description" : "Options about how the extractor handles its TRAP cache", +2024-02-11T18:10:04.4818429Z "type" : "object", +2024-02-11T18:10:04.4818718Z "properties" : { +2024-02-11T18:10:04.4818997Z "dir" : { +2024-02-11T18:10:04.4819292Z "title" : "TRAP cache directory", +2024-02-11T18:10:04.4819739Z "description" : "The directory of the TRAP cache to use", +2024-02-11T18:10:04.4820154Z "type" : "string" +2024-02-11T18:10:04.4820429Z }, +2024-02-11T18:10:04.4820659Z "bound" : { +2024-02-11T18:10:04.4820951Z "title" : "TRAP cache bound", +2024-02-11T18:10:04.4821411Z "description" : "A soft limit (in MB) on the size of the TRAP cache", +2024-02-11T18:10:04.4821860Z "type" : "string", +2024-02-11T18:10:04.4822225Z "pattern" : "[0-9]+" +2024-02-11T18:10:04.4822516Z }, +2024-02-11T18:10:04.4822744Z "write" : { +2024-02-11T18:10:04.4823046Z "title" : "TRAP cache writeable", +2024-02-11T18:10:04.4823551Z "description" : "Whether to write to the TRAP cache as well as reading it", +2024-02-11T18:10:04.4824184Z "type" : "string", +2024-02-11T18:10:04.4824539Z "pattern" : "(true|TRUE|false|FALSE)" +2024-02-11T18:10:04.4824871Z } +2024-02-11T18:10:04.4825081Z } +2024-02-11T18:10:04.4825289Z } +2024-02-11T18:10:04.4825492Z } +2024-02-11T18:10:04.4825682Z } +2024-02-11T18:10:04.4825874Z } +2024-02-11T18:10:04.4826054Z } +2024-02-11T18:10:04.4826233Z ], +2024-02-11T18:10:04.4826417Z "csv" : [ +2024-02-11T18:10:04.4826717Z { +2024-02-11T18:10:04.4827054Z "extractor_root" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/csv" +2024-02-11T18:10:04.4827481Z } +2024-02-11T18:10:04.4827654Z ] +2024-02-11T18:10:04.4827829Z } +2024-02-11T18:10:04.4828003Z } +2024-02-11T18:10:04.4935335Z python does not support TRAP caching (missing option group) +2024-02-11T18:10:04.4936157Z Found 0 languages that support TRAP caching +2024-02-11T18:10:04.4942464Z ##[endgroup] +2024-02-11T18:10:04.4948521Z Skipping python dependency installation +2024-02-11T18:10:04.4961281Z While resolving threads, found a cgroup CPUs file with 4 CPUs in /sys/fs/cgroup/cpuset.cpus.effective. +2024-02-11T18:10:04.4984715Z Writing augmented user configuration file to /home/runner/work/_temp/user-config.yaml +2024-02-11T18:10:04.4985916Z ##[group]Augmented user configuration file contents +2024-02-11T18:10:04.4999634Z threat-models: [] +2024-02-11T18:10:04.4999914Z +2024-02-11T18:10:04.5000355Z ##[endgroup] +2024-02-11T18:10:04.5007504Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database init --db-cluster /home/runner/work/_temp/codeql_databases --source-root=/home/runner/work/fakeredis-py/fakeredis-py --extractor-include-aliases --language=python --codescanning-config=/home/runner/work/_temp/user-config.yaml --calculate-language-specific-baseline --sublanguage-file-coverage +2024-02-11T18:10:08.4267749Z Calculating baseline information in /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:10:08.9794756Z Calculated baseline information for languages: python (551ms). +2024-02-11T18:10:09.2053179Z Resolving extractor python. +2024-02-11T18:10:09.2081732Z Successfully loaded extractor Python (python) from /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python. +2024-02-11T18:10:09.2547745Z Created skeleton CodeQL database at /home/runner/work/_temp/codeql_databases/python. This in-progress database is ready to be populated by an extractor. +2024-02-11T18:10:09.4403566Z ##[group]Run github/codeql-action/analyze@v3 +2024-02-11T18:10:09.4403966Z with: +2024-02-11T18:10:09.4404187Z category: /language:python +2024-02-11T18:10:09.4404475Z output: ../results +2024-02-11T18:10:09.4404723Z upload: always +2024-02-11T18:10:09.4404959Z cleanup-level: brutal +2024-02-11T18:10:09.4405225Z add-snippets: false +2024-02-11T18:10:09.4405476Z skip-queries: false +2024-02-11T18:10:09.4405820Z checkout_path: /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:10:09.4406230Z upload-database: true +2024-02-11T18:10:09.4406502Z wait-for-processing: true +2024-02-11T18:10:09.4406923Z token: *** +2024-02-11T18:10:09.4407170Z matrix: { + "language": "python" +} +2024-02-11T18:10:09.4407484Z expect-error: false +2024-02-11T18:10:09.4407718Z env: +2024-02-11T18:10:09.4407942Z CODE_SCANNING_REF: refs/heads/master +2024-02-11T18:10:09.4408311Z CODE_SCANNING_IS_ANALYZING_DEFAULT_BRANCH: true +2024-02-11T18:10:09.4413764Z CODE_SCANNING_WORKFLOW_FILE: H4sIAAAAAAAA/4xTwW7TQBC9+ytGplcnBzj5VJMmEBGl0IIqQJW1scf2Uns23ZlNcEP+HdlrFwJU9OZ9+/bNvJlnUg3GEM5Mjh9WYWAdRR46Oxyg1FK5zQR3SDLRtHXCk8zkmHKmiDSVqXWUdnw4HgNDMeQtqUZnQfDNbDgOABSpun3A7hPAKyce6hHriKPuods4EhfVSpClv9qibTSzNsT+NYDKpD+CRZUPWGZIkOQUZMyc1dJGfescw95q8RU7viaHkaEIrTU2hkLV7C9ZrBIs27FgoXQdFYrldxJAo8Tq7yMJoFZUOlViDF9h20plCG77S6TdyJpdXszT61myXi/Xb9Kr+eLZI8aim+6/VJbXabJOVp+/dIeL+SL5tPqYvr5K1rO3z1XXnPoVdYccC+VqSTdWUVY9VfXm8urdYnV5ky6Wq/lz6+yNvStqs08LXeOozILbYbnREI5ZhdmdcQIWt4a1GNsOTThGjscITLOBd757FZwILEmLVrV+QPChPnnuG512vd3XkRebatJyvns5EPdaqr9Xy96o3/xkRH+NCODeodUdLwzhBVz4UfZoC+zG+A0RLHQZw49HBEAqi0qixuRYc5cjuA1Ojb1HWxjbDK78X8Sa/29v+AWfcph1iTe2jSGcPgb57HD4w+rxGAY/AwAA///Offf3LQQAAA== +2024-02-11T18:10:09.4419726Z CODEQL_ACTION_FEATURE_MULTI_LANGUAGE: false +2024-02-11T18:10:09.4420103Z CODEQL_ACTION_FEATURE_SANDWICH: false +2024-02-11T18:10:09.4420463Z CODEQL_ACTION_FEATURE_SARIF_COMBINE: true +2024-02-11T18:10:09.4420824Z CODEQL_ACTION_FEATURE_WILL_UPLOAD: true +2024-02-11T18:10:09.4421160Z CODEQL_ACTION_VERSION: 3.24.0 +2024-02-11T18:10:09.4421523Z JOB_RUN_UUID: ed6c711d-243d-47a8-bc21-f477728570b9 +2024-02-11T18:10:09.4422256Z CODEQL_ACTION_ANALYSIS_KEY: dynamic/github-code-scanning/codeql:analyze +2024-02-11T18:10:09.4422776Z CODEQL_WORKFLOW_STARTED_AT: 2024-02-11T18:09:56.749Z +2024-02-11T18:10:09.4423139Z CODEQL_RAM: 14567 +2024-02-11T18:10:09.4423376Z CODEQL_THREADS: 4 +2024-02-11T18:10:09.4423714Z CODEQL_EXTRACTOR_PYTHON_DISABLE_LIBRARY_EXTRACTION: true +2024-02-11T18:10:09.4424099Z ##[endgroup] +2024-02-11T18:10:09.9494909Z While resolving threads, found a cgroup CPUs file with 4 CPUs in /sys/fs/cgroup/cpuset.cpus.effective. +2024-02-11T18:10:09.9646389Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql version --format=json +2024-02-11T18:10:10.4938100Z { +2024-02-11T18:10:10.4938623Z "productName" : "CodeQL", +2024-02-11T18:10:10.4939167Z "vendor" : "GitHub", +2024-02-11T18:10:10.4939640Z "version" : "2.16.1", +2024-02-11T18:10:10.4940232Z "sha" : "be2c95041458fef8f75f3338dbbfac67491f98d5", +2024-02-11T18:10:10.4940913Z "branches" : [ +2024-02-11T18:10:10.4941604Z "codeql-cli-2.16.1" +2024-02-11T18:10:10.4942029Z ], +2024-02-11T18:10:10.4942576Z "copyright" : "Copyright (C) 2019-2024 GitHub, Inc.", +2024-02-11T18:10:10.4943387Z "unpackedLocation" : "/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql", +2024-02-11T18:10:10.4944343Z "configFileLocation" : "/home/runner/.config/codeql/config", +2024-02-11T18:10:10.4945117Z "configFileFound" : false, +2024-02-11T18:10:10.4945616Z "features" : { +2024-02-11T18:10:10.4946080Z "analysisSummaryV2Option" : true, +2024-02-11T18:10:10.4946674Z "buildModeOption" : true, +2024-02-11T18:10:10.4947261Z "bundleSupportsIncludeDiagnostics" : true, +2024-02-11T18:10:10.4947965Z "featuresInVersionResult" : true, +2024-02-11T18:10:10.4948699Z "indirectTracingSupportsStaticBinaries" : false, +2024-02-11T18:10:10.4949468Z "supportsPython312" : true, +2024-02-11T18:10:10.4950011Z "mrvaPackCreate" : true, +2024-02-11T18:10:10.4951049Z "threatModelOption" : true, +2024-02-11T18:10:10.4951610Z "v2ramSizing" : true, +2024-02-11T18:10:10.4952148Z "mrvaPackCreateMultipleQueries" : true, +2024-02-11T18:10:10.4952781Z "setsCodeqlRunnerEnvVar" : true +2024-02-11T18:10:10.4953309Z } +2024-02-11T18:10:10.4953652Z } +2024-02-11T18:10:10.5179608Z ##[group]Extracting python +2024-02-11T18:10:10.5183680Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database trace-command --index-traceless-dbs /home/runner/work/_temp/codeql_databases/python +2024-02-11T18:10:11.2052342Z Running command in /home/runner/work/fakeredis-py/fakeredis-py: [/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python/tools/autobuild.sh] +2024-02-11T18:10:11.3360681Z [2024-02-11 18:10:11] [build-stderr] /bin/sh: 1: python2: not found +2024-02-11T18:10:11.3641872Z [2024-02-11 18:10:11] [build-stdout] 'docs' appears to be the root. +2024-02-11T18:10:11.3643926Z [2024-02-11 18:10:11] [build-stdout] Will try to guess Python version, as it was not specified in `lgtm.yml` +2024-02-11T18:10:11.3645993Z [2024-02-11 18:10:11] [build-stdout] Trying to guess Python version based on Trove classifiers in setup.py +2024-02-11T18:10:11.3648022Z [2024-02-11 18:10:11] [build-stdout] Did not find setup.py (expected it to be at /home/runner/work/fakeredis-py/fakeredis-py/docs/setup.py) +2024-02-11T18:10:11.3653449Z [2024-02-11 18:10:11] [build-stdout] Trying to guess Python version based on travis file +2024-02-11T18:10:11.3655978Z [2024-02-11 18:10:11] [build-stdout] Did not find any travis files (expected them at either ['/home/runner/work/fakeredis-py/fakeredis-py/docs/.travis.yml', '/home/runner/work/fakeredis-py/fakeredis-py/docs/travis.yml']) +2024-02-11T18:10:11.3658341Z [2024-02-11 18:10:11] [build-stdout] Trying to guess Python version based on installed versions +2024-02-11T18:10:11.3659902Z [2024-02-11 18:10:11] [build-stdout] Wanted to run Python 2, but it is not available. Using Python 3 instead +2024-02-11T18:10:11.3661583Z [2024-02-11 18:10:11] [build-stdout] This script is running Python 3, but Python 2 is also available (as 'python3') +2024-02-11T18:10:11.3662517Z [2024-02-11 18:10:11] [build-stdout] Could not guess Python version, will use default: Python 3 +2024-02-11T18:10:11.3664748Z [2024-02-11 18:10:11] [build-stdout] Calling python3 -S /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python/tools/python_tracer.py -v -z all -c /home/runner/work/_temp/codeql_databases/python/working/trap_cache -R /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:10:11.7140154Z [2024-02-11 18:10:11] [build-stdout] [INFO] Extraction will use the Python 3 standard library. +2024-02-11T18:10:11.7145356Z [2024-02-11 18:10:11] [build-stdout] [INFO] sys_path is: ['/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python/tools', '/usr/lib/python310.zip', '/usr/lib/python3.10', '/usr/lib/python3.10/lib-dynload'] +2024-02-11T18:10:11.7150309Z [2024-02-11 18:10:11] [build-stdout] [INFO] Python version 3.10.12 +2024-02-11T18:10:11.7151419Z [2024-02-11 18:10:11] [build-stdout] [INFO] Python extractor version 6.0.0 +2024-02-11T18:10:11.7998268Z [2024-02-11 18:10:11] [build-stdout] [INFO] [1] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/scripts in 1ms +2024-02-11T18:10:11.9017056Z [2024-02-11 18:10:11] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/scripts/generate_command_info.py in 88ms +2024-02-11T18:10:11.9334404Z [2024-02-11 18:10:11] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/scripts/generate_supported_commands_doc.py in 124ms +2024-02-11T18:10:11.9692901Z [2024-02-11 18:10:11] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/scripts/create_issues.py in 149ms +2024-02-11T18:10:11.9732342Z [2024-02-11 18:10:11] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_fakesocket.py in 28ms +2024-02-11T18:10:11.9747162Z [2024-02-11 18:10:11] [build-stdout] [INFO] [2] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/fakeredis in 1ms +2024-02-11T18:10:11.9769799Z [2024-02-11 18:10:11] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/__init__.py in 2ms +2024-02-11T18:10:12.0115019Z [2024-02-11 18:10:12] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_zset.py in 127ms +2024-02-11T18:10:12.1429546Z [2024-02-11 18:10:12] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/json/__init__.py in 131ms +2024-02-11T18:10:12.2814373Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_basefakesocket.py in 359ms +2024-02-11T18:10:12.2840274Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/__init__.py in 3ms +2024-02-11T18:10:12.3556547Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/test_topk.py in 71ms +2024-02-11T18:10:12.3575056Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack in 2ms +2024-02-11T18:10:12.3937795Z [2024-02-11 18:10:12] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_stream.py in 594ms +2024-02-11T18:10:12.4967655Z [2024-02-11 18:10:12] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_json/test_json_arr_commands.py in 519ms +2024-02-11T18:10:12.5289156Z [2024-02-11 18:10:12] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/bitmap_mixin.py in 386ms +2024-02-11T18:10:12.5642176Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/_bf_mixin.py in 206ms +2024-02-11T18:10:12.5867049Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/__init__.py in 22ms +2024-02-11T18:10:12.8523569Z [2024-02-11 18:10:12] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/string_mixin.py in 457ms +2024-02-11T18:10:12.8650730Z [2024-02-11 18:10:12] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_transactions_commands.py in 278ms +2024-02-11T18:10:13.0157799Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_connection.py in 518ms +2024-02-11T18:10:13.2086725Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/queue.py in 193ms +2024-02-11T18:10:13.2090739Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/geo in 0ms +2024-02-11T18:10:13.2519817Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/connection_mixin.py in 42ms +2024-02-11T18:10:13.3019896Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_redis_asyncio.py in 436ms +2024-02-11T18:10:13.3142993Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/test_cuckoofilter.py in 62ms +2024-02-11T18:10:13.4926722Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/test_cms.py in 190ms +2024-02-11T18:10:13.6151998Z [2024-02-11 18:10:13] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_json/test_json.py in 762ms +2024-02-11T18:10:13.7360373Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_geo_commands.py in 244ms +2024-02-11T18:10:13.7541556Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_general.py in 18ms +2024-02-11T18:10:13.7562134Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/__init__.py in 2ms +2024-02-11T18:10:13.8390626Z [2024-02-11 18:10:13] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/conftest.py in 82ms +2024-02-11T18:10:13.8506293Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/weakref.py in 536ms +2024-02-11T18:10:13.8549388Z [2024-02-11 18:10:13] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_zadd.py in 239ms +2024-02-11T18:10:13.9213648Z [2024-02-11 18:10:13] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/bisect.py in 70ms +2024-02-11T18:10:14.0628122Z [2024-02-11 18:10:14] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/aioredis.py in 204ms +2024-02-11T18:10:14.1061987Z [2024-02-11 18:10:14] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/scripting_mixin.py in 267ms +2024-02-11T18:10:14.1170875Z [2024-02-11 18:10:14] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/testtools.py in 57ms +2024-02-11T18:10:14.1179080Z [2024-02-11 18:10:14] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mock.py in 12ms +2024-02-11T18:10:14.1409609Z [2024-02-11 18:10:14] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/geo/haversine.py in 23ms +2024-02-11T18:10:14.3132932Z [2024-02-11 18:10:14] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/typing.py in 1784ms +2024-02-11T18:10:14.3234449Z [2024-02-11 18:10:14] [build-stdout] [INFO] [3] Extracted module itertools in 10ms +2024-02-11T18:10:14.3737884Z [2024-02-11 18:10:14] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_helpers.py in 256ms +2024-02-11T18:10:14.5230034Z [2024-02-11 18:10:14] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/codecs.py in 601ms +2024-02-11T18:10:14.9566632Z [2024-02-11 18:10:14] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_string_commands.py in 582ms +2024-02-11T18:10:14.9570158Z [2024-02-11 18:10:14] [build-stdout] [INFO] [1] Extracted folder /usr/lib/python3.10/logging in 0ms +2024-02-11T18:10:15.1138697Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_bitmap_commands.py in 591ms +2024-02-11T18:10:15.1205519Z [2024-02-11 18:10:15] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/threading.py in 797ms +2024-02-11T18:10:15.2248639Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/test_bloomfilter.py in 111ms +2024-02-11T18:10:15.3552014Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/_cms_mixin.py in 130ms +2024-02-11T18:10:15.3573576Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/__init__.py in 2ms +2024-02-11T18:10:15.5248375Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/hashlib.py in 167ms +2024-02-11T18:10:15.5256937Z [2024-02-11 18:10:15] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_commands.py in 405ms +2024-02-11T18:10:15.7454180Z [2024-02-11 18:10:15] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_sortedset_commands.py in 1603ms +2024-02-11T18:10:15.8335730Z [2024-02-11 18:10:15] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_streams_commands.py in 875ms +2024-02-11T18:10:15.9814583Z [2024-02-11 18:10:15] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_scripting.py in 456ms +2024-02-11T18:10:16.0770304Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/abc.py in 95ms +2024-02-11T18:10:16.1437346Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/__future__.py in 66ms +2024-02-11T18:10:16.1443772Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/asyncio in 1ms +2024-02-11T18:10:16.2660019Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/encodings/__init__.py in 116ms +2024-02-11T18:10:16.2911067Z [2024-02-11 18:10:16] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_hypothesis.py in 765ms +2024-02-11T18:10:16.4298305Z [2024-02-11 18:10:16] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/server_mixin.py in 138ms +2024-02-11T18:10:16.4360680Z [2024-02-11 18:10:16] [build-stdout] [INFO] [3] Extracted module _queue in 7ms +2024-02-11T18:10:16.4633510Z [2024-02-11 18:10:16] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_generic_commands.py in 717ms +2024-02-11T18:10:16.5236943Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/json/decoder.py in 256ms +2024-02-11T18:10:16.5433602Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/__init__.py in 20ms +2024-02-11T18:10:16.5454575Z [2024-02-11 18:10:16] [build-stdout] [INFO] [2] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/test/test_json in 3ms +2024-02-11T18:10:16.8954611Z [2024-02-11 18:10:16] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/warnings.py in 458ms +2024-02-11T18:10:16.9392483Z [2024-02-11 18:10:16] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_pubsub_commands.py in 475ms +2024-02-11T18:10:17.0464516Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/collections/__init__.py in 1212ms +2024-02-11T18:10:17.2606297Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/_cf_mixin.py in 214ms +2024-02-11T18:10:17.3628668Z [2024-02-11 18:10:17] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/_collections_abc.py in 816ms +2024-02-11T18:10:17.3635120Z [2024-02-11 18:10:17] [build-stdout] [INFO] [2] Extracted module sys in 0ms +2024-02-11T18:10:17.4045531Z [2024-02-11 18:10:17] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/traceback.py in 507ms +2024-02-11T18:10:17.4595808Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_server.py in 198ms +2024-02-11T18:10:17.4643747Z [2024-02-11 18:10:17] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/importlib/__init__.py in 101ms +2024-02-11T18:10:17.4686420Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted module _hashlib in 9ms +2024-02-11T18:10:17.6698088Z [2024-02-11 18:10:17] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/functools.py in 730ms +2024-02-11T18:10:17.6700614Z [2024-02-11 18:10:17] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/collections in 0ms +2024-02-11T18:10:17.7388711Z [2024-02-11 18:10:17] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_msgs.py in 68ms +2024-02-11T18:10:17.8183315Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/geo_mixin.py in 349ms +2024-02-11T18:10:17.8318280Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted module _sha3 in 14ms +2024-02-11T18:10:17.9092048Z [2024-02-11 18:10:17] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/streams.py in 445ms +2024-02-11T18:10:17.9102845Z [2024-02-11 18:10:17] [build-stdout] [INFO] [2] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack in 1ms +2024-02-11T18:10:17.9357723Z [2024-02-11 18:10:17] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/linecache.py in 97ms +2024-02-11T18:10:17.9630283Z [2024-02-11 18:10:17] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/subprocess.py in 223ms +2024-02-11T18:10:18.1119996Z [2024-02-11 18:10:18] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/importlib/util.py in 181ms +2024-02-11T18:10:18.2643965Z [2024-02-11 18:10:18] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/sortedset_mixin.py in 860ms +2024-02-11T18:10:18.3754829Z [2024-02-11 18:10:18] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/set_mixin.py in 264ms +2024-02-11T18:10:18.3917490Z [2024-02-11 18:10:18] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/events.py in 429ms +2024-02-11T18:10:18.4079978Z [2024-02-11 18:10:18] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/transports.py in 144ms +2024-02-11T18:10:18.4144591Z [2024-02-11 18:10:18] [build-stdout] [INFO] [3] Extracted module _md5 in 6ms +2024-02-11T18:10:18.5231902Z [2024-02-11 18:10:18] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/_threading_local.py in 108ms +2024-02-11T18:10:18.7078426Z [2024-02-11 18:10:18] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/_topk_mixin.py in 315ms +2024-02-11T18:10:18.7137068Z [2024-02-11 18:10:18] [build-stdout] [INFO] [4] Extracted module _warnings in 6ms +2024-02-11T18:10:18.7195170Z [2024-02-11 18:10:18] [build-stdout] [INFO] [4] Extracted module _sha256 in 6ms +2024-02-11T18:10:19.1010751Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/unix_events.py in 1190ms +2024-02-11T18:10:19.1239550Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/threads.py in 19ms +2024-02-11T18:10:19.1246007Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_json/__init__.py in 2ms +2024-02-11T18:10:19.1356818Z [2024-02-11 18:10:19] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/tempfile.py in 760ms +2024-02-11T18:10:19.1882424Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/format_helpers.py in 65ms +2024-02-11T18:10:19.1959548Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/test/__init__.py in 7ms +2024-02-11T18:10:19.2108215Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/contextvars.py in 12ms +2024-02-11T18:10:19.2122509Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted module builtins in 0ms +2024-02-11T18:10:19.2340067Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/importlib/_abc.py in 20ms +2024-02-11T18:10:19.5001053Z [2024-02-11 18:10:19] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/dataclasses.py in 975ms +2024-02-11T18:10:19.5631542Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/importlib/_bootstrap.py in 843ms +2024-02-11T18:10:19.6028987Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/runners.py in 38ms +2024-02-11T18:10:19.6307361Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/json/encoder.py in 395ms +2024-02-11T18:10:19.6926121Z [2024-02-11 18:10:19] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/random.py in 557ms +2024-02-11T18:10:19.7545438Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/queues.py in 152ms +2024-02-11T18:10:19.8021697Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/reprlib.py in 171ms +2024-02-11T18:10:19.8097784Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/unittest/__init__.py in 55ms +2024-02-11T18:10:19.8167440Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted module _codecs in 7ms +2024-02-11T18:10:19.8198210Z [2024-02-11 18:10:19] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/geo/__init__.py in 3ms +2024-02-11T18:10:19.9007940Z [2024-02-11 18:10:19] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_extract_args.py in 98ms +2024-02-11T18:10:20.0514768Z [2024-02-11 18:10:20] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/copy.py in 230ms +2024-02-11T18:10:20.1609534Z [2024-02-11 18:10:20] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/futures.py in 260ms +2024-02-11T18:10:20.1847976Z [2024-02-11 18:10:20] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/streams_mixin.py in 488ms +2024-02-11T18:10:20.2542771Z [2024-02-11 18:10:20] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/encodings/aliases.py in 203ms +2024-02-11T18:10:20.2763474Z [2024-02-11 18:10:20] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/keyword.py in 22ms +2024-02-11T18:10:20.3675707Z [2024-02-11 18:10:20] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/selector_events.py in 868ms +2024-02-11T18:10:20.7769718Z [2024-02-11 18:10:20] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/stack/_json_mixin.py in 615ms +2024-02-11T18:10:21.0769336Z [2024-02-11 18:10:21] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/windows_events.py in 709ms +2024-02-11T18:10:21.0778900Z [2024-02-11 18:10:21] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/test in 1ms +2024-02-11T18:10:21.0853993Z [2024-02-11 18:10:21] [build-stdout] [INFO] [3] Extracted module _blake2 in 7ms +2024-02-11T18:10:21.0923680Z [2024-02-11 18:10:21] [build-stdout] [INFO] [3] Extracted module math in 7ms +2024-02-11T18:10:21.3056982Z [2024-02-11 18:10:21] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/importlib/_bootstrap_external.py in 1028ms +2024-02-11T18:10:21.3063370Z [2024-02-11 18:10:21] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/concurrent/futures in 0ms +2024-02-11T18:10:21.3072134Z [2024-02-11 18:10:21] [build-stdout] [INFO] [4] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins in 0ms +2024-02-11T18:10:21.3554496Z [2024-02-11 18:10:21] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/io.py in 48ms +2024-02-11T18:10:21.4341856Z [2024-02-11 18:10:21] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/statistics.py in 657ms +2024-02-11T18:10:21.7528279Z [2024-02-11 18:10:21] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/selectors.py in 397ms +2024-02-11T18:10:21.7538123Z [2024-02-11 18:10:21] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/subprocess.py in 1568ms +2024-02-11T18:10:21.8878193Z [2024-02-11 18:10:21] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/asyncio/windows_utils.py in 133ms +2024-02-11T18:10:21.8887485Z [2024-02-11 18:10:21] [build-stdout] [INFO] [1] Extracted folder /usr/lib/python3.10/encodings in 0ms +2024-02-11T18:10:22.0621861Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/unittest/suite.py in 308ms +2024-02-11T18:10:22.0696720Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted module time in 7ms +2024-02-11T18:10:22.0704242Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/unittest in 0ms +2024-02-11T18:10:22.0770805Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted module _json in 6ms +2024-02-11T18:10:22.1402884Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/unittest/signals.py in 58ms +2024-02-11T18:10:22.1468767Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted module errno in 11ms +2024-02-11T18:10:22.1579404Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/proactor_events.py in 723ms +2024-02-11T18:10:22.1904400Z [2024-02-11 18:10:22] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/encodings/mbcs.py in 42ms +2024-02-11T18:10:22.3302836Z [2024-02-11 18:10:22] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/asyncio/sslproto.py in 441ms +2024-02-11T18:10:22.3498643Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/coroutines.py in 192ms +2024-02-11T18:10:22.3751316Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/concurrent/futures/__init__.py in 24ms +2024-02-11T18:10:22.4523393Z [2024-02-11 18:10:22] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/stat.py in 121ms +2024-02-11T18:10:22.5660368Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/_weakrefset.py in 190ms +2024-02-11T18:10:22.5760531Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/struct.py in 10ms +2024-02-11T18:10:22.7238458Z [2024-02-11 18:10:22] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/base_events.py in 1630ms +2024-02-11T18:10:22.7484001Z [2024-02-11 18:10:22] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/mixins.py in 25ms +2024-02-11T18:10:22.8055814Z [2024-02-11 18:10:22] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_hash_commands.py in 352ms +2024-02-11T18:10:22.8248525Z [2024-02-11 18:10:22] [build-stdout] [INFO] [1] Extracted module _io in 19ms +2024-02-11T18:10:22.8997579Z [2024-02-11 18:10:22] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/unittest/util.py in 151ms +2024-02-11T18:10:22.9352131Z [2024-02-11 18:10:22] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/_py_abc.py in 110ms +2024-02-11T18:10:22.9754196Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/contextlib.py in 394ms +2024-02-11T18:10:22.9788087Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted module select in 9ms +2024-02-11T18:10:22.9848668Z [2024-02-11 18:10:22] [build-stdout] [INFO] [2] Extracted module _sha1 in 6ms +2024-02-11T18:10:23.1718874Z [2024-02-11 18:10:23] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/asyncio/locks.py in 236ms +2024-02-11T18:10:23.1870135Z [2024-02-11 18:10:23] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/__init__.py in 15ms +2024-02-11T18:10:23.2260284Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/ssl.py in 1035ms +2024-02-11T18:10:23.2333016Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted module _thread in 7ms +2024-02-11T18:10:23.2787341Z [2024-02-11 18:10:23] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/transactions_mixin.py in 91ms +2024-02-11T18:10:23.2966095Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/protocols.py in 63ms +2024-02-11T18:10:23.4978712Z [2024-02-11 18:10:23] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_scan.py in 218ms +2024-02-11T18:10:23.4999724Z [2024-02-11 18:10:23] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/uuid.py in 515ms +2024-02-11T18:10:23.5003366Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/pubsub_mixin.py in 203ms +2024-02-11T18:10:23.5856269Z [2024-02-11 18:10:23] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_server_commands.py in 85ms +2024-02-11T18:10:23.6031840Z [2024-02-11 18:10:23] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/json/scanner.py in 105ms +2024-02-11T18:10:23.6076796Z [2024-02-11 18:10:23] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/os.py in 707ms +2024-02-11T18:10:23.9160020Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/concurrent/futures/_base.py in 415ms +2024-02-11T18:10:23.9253805Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/log.py in 8ms +2024-02-11T18:10:23.9312706Z [2024-02-11 18:10:23] [build-stdout] [INFO] [4] Extracted module _stat in 6ms +2024-02-11T18:10:24.1559802Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/tasks.py in 548ms +2024-02-11T18:10:24.2617870Z [2024-02-11 18:10:24] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/importlib/metadata/__init__.py in 658ms +2024-02-11T18:10:24.3089650Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_stack/test_bloom_redis_py.py in 150ms +2024-02-11T18:10:24.4208258Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/_command_args_parsing.py in 111ms +2024-02-11T18:10:24.6044008Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/trsock.py in 183ms +2024-02-11T18:10:24.6056911Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/importlib/metadata in 0ms +2024-02-11T18:10:24.6665300Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/base_futures.py in 60ms +2024-02-11T18:10:24.7007645Z [2024-02-11 18:10:24] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/concurrent/futures/process.py in 436ms +2024-02-11T18:10:24.7065322Z [2024-02-11 18:10:24] [build-stdout] [INFO] [1] Extracted module _bisect in 5ms +2024-02-11T18:10:24.7210245Z [2024-02-11 18:10:24] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/enum.py in 789ms +2024-02-11T18:10:24.9840870Z [2024-02-11 18:10:24] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/generic_mixin.py in 316ms +2024-02-11T18:10:25.1538745Z [2024-02-11 18:10:25] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/base64.py in 446ms +2024-02-11T18:10:25.2757862Z [2024-02-11 18:10:25] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/unittest/async_case.py in 120ms +2024-02-11T18:10:25.3530657Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/csv.py in 369ms +2024-02-11T18:10:25.3719039Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted module _ssl in 19ms +2024-02-11T18:10:25.3979652Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/importlib/metadata/_functools.py in 25ms +2024-02-11T18:10:25.4031207Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted module _sha512 in 6ms +2024-02-11T18:10:25.4194633Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/multiprocessing/__init__.py in 16ms +2024-02-11T18:10:25.4250491Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/platform.py in 704ms +2024-02-11T18:10:25.4312265Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/collections/abc.py in 6ms +2024-02-11T18:10:25.4318024Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/multiprocessing in 1ms +2024-02-11T18:10:25.4387735Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted module binascii in 6ms +2024-02-11T18:10:25.6051394Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/numbers.py in 185ms +2024-02-11T18:10:25.6136090Z [2024-02-11 18:10:25] [build-stdout] [INFO] [3] Extracted module _contextvars in 8ms +2024-02-11T18:10:25.8781512Z [2024-02-11 18:10:25] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/unittest/mock.py in 2292ms +2024-02-11T18:10:25.8993177Z [2024-02-11 18:10:25] [build-stdout] [INFO] [2] Extracted module posix in 20ms +2024-02-11T18:10:25.9265545Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/tracemalloc.py in 487ms +2024-02-11T18:10:25.9350072Z [2024-02-11 18:10:25] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/concurrent/__init__.py in 8ms +2024-02-11T18:10:25.9771074Z [2024-02-11 18:10:25] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/geo/geohash.py in 77ms +2024-02-11T18:10:26.0875633Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted module _asyncio in 111ms +2024-02-11T18:10:26.1856953Z [2024-02-11 18:10:26] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/unittest/main.py in 250ms +2024-02-11T18:10:26.2007431Z [2024-02-11 18:10:26] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/decimal.py in 15ms +2024-02-11T18:10:26.2559592Z [2024-02-11 18:10:26] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/importlib/metadata/_adapters.py in 54ms +2024-02-11T18:10:26.2917989Z [2024-02-11 18:10:26] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/importlib/metadata/_meta.py in 35ms +2024-02-11T18:10:26.2932805Z [2024-02-11 18:10:26] [build-stdout] [INFO] [4] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/test in 1ms +2024-02-11T18:10:26.3391084Z [2024-02-11 18:10:26] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/calendar.py in 725ms +2024-02-11T18:10:26.3534932Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/multiprocessing/context.py in 260ms +2024-02-11T18:10:26.3543449Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted module _tracemalloc in 6ms +2024-02-11T18:10:26.3986092Z [2024-02-11 18:10:26] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/asyncio/exceptions.py in 58ms +2024-02-11T18:10:26.4960122Z [2024-02-11 18:10:26] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/unittest/case.py in 1218ms +2024-02-11T18:10:26.5131258Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_init_args.py in 158ms +2024-02-11T18:10:26.7215414Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/re.py in 208ms +2024-02-11T18:10:26.7221150Z [2024-02-11 18:10:26] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/json in 0ms +2024-02-11T18:10:26.7254252Z [2024-02-11 18:10:26] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/types.py in 229ms +2024-02-11T18:10:26.7359547Z [2024-02-11 18:10:26] [build-stdout] [INFO] [1] Extracted module _collections in 10ms +2024-02-11T18:10:26.8627091Z [2024-02-11 18:10:26] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/fractions.py in 464ms +2024-02-11T18:10:26.8677170Z [2024-02-11 18:10:26] [build-stdout] [INFO] [3] Extracted module _posixsubprocess in 5ms +2024-02-11T18:10:26.8847582Z [2024-02-11 18:10:26] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/concurrent/futures/thread.py in 148ms +2024-02-11T18:10:27.2508856Z [2024-02-11 18:10:27] [build-stdout] [INFO] [3] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/list_mixin.py in 382ms +2024-02-11T18:10:27.2564865Z [2024-02-11 18:10:27] [build-stdout] [INFO] [3] Extracted module _imp in 6ms +2024-02-11T18:10:27.4529445Z [2024-02-11 18:10:27] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/importlib/abc.py in 196ms +2024-02-11T18:10:27.4591477Z [2024-02-11 18:10:27] [build-stdout] [INFO] [3] Extracted module _statistics in 6ms +2024-02-11T18:10:27.5007740Z [2024-02-11 18:10:27] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/multiprocessing/connection.py in 777ms +2024-02-11T18:10:27.9956310Z [2024-02-11 18:10:27] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/locale.py in 1110ms +2024-02-11T18:10:28.0013996Z [2024-02-11 18:10:28] [build-stdout] [INFO] [1] Extracted module marshal in 6ms +2024-02-11T18:10:28.1901555Z [2024-02-11 18:10:28] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/socket.py in 731ms +2024-02-11T18:10:28.2925854Z [2024-02-11 18:10:28] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/email/message.py in 790ms +2024-02-11T18:10:28.3001070Z [2024-02-11 18:10:28] [build-stdout] [INFO] [2] Extracted module fcntl in 7ms +2024-02-11T18:10:28.3529595Z [2024-02-11 18:10:28] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/operator.py in 351ms +2024-02-11T18:10:28.3719135Z [2024-02-11 18:10:28] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/staggered.py in 71ms +2024-02-11T18:10:28.4223374Z [2024-02-11 18:10:28] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_json/test_json_commands.py in 50ms +2024-02-11T18:10:28.5226541Z [2024-02-11 18:10:28] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/multiprocessing/synchronize.py in 331ms +2024-02-11T18:10:28.5751621Z [2024-02-11 18:10:28] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/multiprocessing/resource_sharer.py in 150ms +2024-02-11T18:10:28.5761623Z [2024-02-11 18:10:28] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/inspect.py in 2282ms +2024-02-11T18:10:28.6798817Z [2024-02-11 18:10:28] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/hmac.py in 157ms +2024-02-11T18:10:28.8665516Z [2024-02-11 18:10:28] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/heapq.py in 287ms +2024-02-11T18:10:29.1308717Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/base_subprocess.py in 264ms +2024-02-11T18:10:29.1458772Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/asyncio/constants.py in 15ms +2024-02-11T18:10:29.1534772Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted module _functools in 7ms +2024-02-11T18:10:29.1814395Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/email/__init__.py in 27ms +2024-02-11T18:10:29.1880241Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted module _random in 5ms +2024-02-11T18:10:29.4339578Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/unittest/runner.py in 245ms +2024-02-11T18:10:29.4356181Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/xmlrpc in 0ms +2024-02-11T18:10:29.5916488Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/uu.py in 156ms +2024-02-11T18:10:29.5992745Z [2024-02-11 18:10:29] [build-stdout] [INFO] [4] Extracted module _multiprocessing in 7ms +2024-02-11T18:10:29.8321780Z [2024-02-11 18:10:29] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/logging/__init__.py in 1258ms +2024-02-11T18:10:30.1671255Z [2024-02-11 18:10:30] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/pickle.py in 1488ms +2024-02-11T18:10:30.2144843Z [2024-02-11 18:10:30] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/ntpath.py in 615ms +2024-02-11T18:10:30.4527398Z [2024-02-11 18:10:30] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/zipfile.py in 2098ms +2024-02-11T18:10:30.5815641Z [2024-02-11 18:10:30] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_list_commands.py in 748ms +2024-02-11T18:10:30.6012741Z [2024-02-11 18:10:30] [build-stdout] [INFO] [2] Extracted module _decimal in 20ms +2024-02-11T18:10:30.6179150Z [2024-02-11 18:10:30] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/importlib/machinery.py in 16ms +2024-02-11T18:10:30.6240844Z [2024-02-11 18:10:30] [build-stdout] [INFO] [2] Extracted module _heapq in 6ms +2024-02-11T18:10:30.8304401Z [2024-02-11 18:10:30] [build-stdout] [INFO] [2] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/fakeredis/commands_mixins/hash_mixin.py in 206ms +2024-02-11T18:10:30.9522892Z [2024-02-11 18:10:30] [build-stdout] [INFO] [1] Extracted file /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins/test_set_commands.py in 499ms +2024-02-11T18:10:31.0131030Z [2024-02-11 18:10:31] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/sre_compile.py in 798ms +2024-02-11T18:10:31.2312681Z [2024-02-11 18:10:31] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/multiprocessing/reduction.py in 217ms +2024-02-11T18:10:31.3754668Z [2024-02-11 18:10:31] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/tokenize.py in 544ms +2024-02-11T18:10:31.4492331Z [2024-02-11 18:10:31] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/asyncio/base_tasks.py in 73ms +2024-02-11T18:10:31.4508969Z [2024-02-11 18:10:31] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/concurrent in 0ms +2024-02-11T18:10:31.7285655Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/ast.py in 1561ms +2024-02-11T18:10:31.7406126Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted module _abc in 5ms +2024-02-11T18:10:31.7429644Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted module _pickle in 8ms +2024-02-11T18:10:31.8083408Z [2024-02-11 18:10:31] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/posixpath.py in 356ms +2024-02-11T18:10:31.9108721Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/fnmatch.py in 167ms +2024-02-11T18:10:31.9139737Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/xmlrpc/__init__.py in 3ms +2024-02-11T18:10:31.9355139Z [2024-02-11 18:10:31] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/importlib/metadata/_collections.py in 20ms +2024-02-11T18:10:32.0955113Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/multiprocessing/process.py in 287ms +2024-02-11T18:10:32.2284864Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/copyreg.py in 132ms +2024-02-11T18:10:32.2430401Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted module _socket in 15ms +2024-02-11T18:10:32.2485652Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted module _sre in 5ms +2024-02-11T18:10:32.3255445Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/shutil.py in 1094ms +2024-02-11T18:10:32.4236767Z [2024-02-11 18:10:32] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/sre_parse.py in 1471ms +2024-02-11T18:10:32.5121600Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lzma.py in 186ms +2024-02-11T18:10:32.5636798Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/multiprocessing/queues.py in 314ms +2024-02-11T18:10:32.6222159Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/sre_constants.py in 110ms +2024-02-11T18:10:32.6286272Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted module zlib in 7ms +2024-02-11T18:10:32.6580777Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/genericpath.py in 94ms +2024-02-11T18:10:32.6965558Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/signal.py in 68ms +2024-02-11T18:10:32.7039873Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted module _operator in 7ms +2024-02-11T18:10:32.8531795Z [2024-02-11 18:10:32] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/unittest/result.py in 195ms +2024-02-11T18:10:32.9317764Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/quopri.py in 227ms +2024-02-11T18:10:32.9388103Z [2024-02-11 18:10:32] [build-stdout] [INFO] [4] Extracted module _struct in 7ms +2024-02-11T18:10:33.0155901Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/_compat_pickle.py in 162ms +2024-02-11T18:10:33.0211949Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted module unicodedata in 6ms +2024-02-11T18:10:33.0600188Z [2024-02-11 18:10:33] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/_compression.py in 121ms +2024-02-11T18:10:33.0686072Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/pathlib.py in 1132ms +2024-02-11T18:10:33.0861957Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/importlib/metadata/_itertools.py in 17ms +2024-02-11T18:10:33.0872255Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/email in 1ms +2024-02-11T18:10:33.0933111Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted module atexit in 6ms +2024-02-11T18:10:33.1039207Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted module _weakref in 10ms +2024-02-11T18:10:33.1810267Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/token.py in 77ms +2024-02-11T18:10:33.2160818Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/string.py in 194ms +2024-02-11T18:10:33.3018248Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/_encoded_words.py in 115ms +2024-02-11T18:10:33.3033514Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted module array in 7ms +2024-02-11T18:10:33.3459320Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/importlib/metadata/_text.py in 42ms +2024-02-11T18:10:33.3948525Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/getopt.py in 178ms +2024-02-11T18:10:33.3957253Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/importlib in 0ms +2024-02-11T18:10:33.3965628Z [2024-02-11 18:10:33] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/urllib in 1ms +2024-02-11T18:10:33.4059972Z [2024-02-11 18:10:33] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/parser.py in 60ms +2024-02-11T18:10:33.4740720Z [2024-02-11 18:10:33] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/dis.py in 413ms +2024-02-11T18:10:33.4818418Z [2024-02-11 18:10:33] [build-stdout] [INFO] [4] Extracted module _signal in 8ms +2024-02-11T18:10:33.4844333Z [2024-02-11 18:10:33] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/urllib/__init__.py in 2ms +2024-02-11T18:10:33.5095107Z [2024-02-11 18:10:33] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/difflib.py in 1085ms +2024-02-11T18:10:34.2581619Z [2024-02-11 18:10:34] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/plistlib.py in 773ms +2024-02-11T18:10:34.2654885Z [2024-02-11 18:10:34] [build-stdout] [INFO] [4] Extracted module _csv in 8ms +2024-02-11T18:10:34.3120875Z [2024-02-11 18:10:34] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/xmlrpc/client.py in 906ms +2024-02-11T18:10:34.4589106Z [2024-02-11 18:10:34] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/bz2.py in 193ms +2024-02-11T18:10:34.5031108Z [2024-02-11 18:10:34] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/charset.py in 190ms +2024-02-11T18:10:34.5104492Z [2024-02-11 18:10:34] [build-stdout] [INFO] [3] Extracted module _lzma in 7ms +2024-02-11T18:10:34.5176433Z [2024-02-11 18:10:34] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/email/errors.py in 59ms +2024-02-11T18:10:35.2907561Z [2024-02-11 18:10:35] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/urllib/parse.py in 780ms +2024-02-11T18:10:35.4460635Z [2024-02-11 18:10:35] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/argparse.py in 1936ms +2024-02-11T18:10:35.4523881Z [2024-02-11 18:10:35] [build-stdout] [INFO] [1] Extracted folder /home/runner/work/fakeredis-py/fakeredis-py/test/test_mixins in 1ms +2024-02-11T18:10:35.4547755Z [2024-02-11 18:10:35] [build-stdout] [INFO] [1] Extracted module _locale in 7ms +2024-02-11T18:10:35.6584332Z [2024-02-11 18:10:35] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/feedparser.py in 367ms +2024-02-11T18:10:35.7216262Z [2024-02-11 18:10:35] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/tarfile.py in 2324ms +2024-02-11T18:10:35.7221892Z [2024-02-11 18:10:35] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/xml in 0ms +2024-02-11T18:10:35.7230268Z [2024-02-11 18:10:35] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/xml/parsers in 0ms +2024-02-11T18:10:35.7357081Z [2024-02-11 18:10:35] [build-stdout] [INFO] [2] Extracted module grp in 6ms +2024-02-11T18:10:35.8252151Z [2024-02-11 18:10:35] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/opcode.py in 166ms +2024-02-11T18:10:35.9735677Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/doctest.py in 1456ms +2024-02-11T18:10:35.9804087Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/xml/parsers/__init__.py in 6ms +2024-02-11T18:10:35.9869128Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted module _uuid in 6ms +2024-02-11T18:10:35.9875634Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted folder /usr/lib/python3.10/http in 0ms +2024-02-11T18:10:35.9940514Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted module _bz2 in 6ms +2024-02-11T18:10:35.9999546Z [2024-02-11 18:10:35] [build-stdout] [INFO] [4] Extracted module _string in 5ms +2024-02-11T18:10:36.0388340Z [2024-02-11 18:10:36] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/textwrap.py in 290ms +2024-02-11T18:10:36.0539513Z [2024-02-11 18:10:36] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/utils.py in 228ms +2024-02-11T18:10:36.2146571Z [2024-02-11 18:10:36] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/email/_policybase.py in 175ms +2024-02-11T18:10:36.6321973Z [2024-02-11 18:10:36] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/gettext.py in 631ms +2024-02-11T18:10:36.6377277Z [2024-02-11 18:10:36] [build-stdout] [INFO] [4] Extracted module _opcode in 6ms +2024-02-11T18:10:36.9508627Z [2024-02-11 18:10:36] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/pprint.py in 735ms +2024-02-11T18:10:37.1081617Z [2024-02-11 18:10:37] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/optparse.py in 1054ms +2024-02-11T18:10:37.4244036Z [2024-02-11 18:10:37] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/datetime.py in 1969ms +2024-02-11T18:10:37.5543425Z [2024-02-11 18:10:37] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/unittest/loader.py in 446ms +2024-02-11T18:10:37.5609835Z [2024-02-11 18:10:37] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/xml/parsers/expat.py in 6ms +2024-02-11T18:10:37.5761163Z [2024-02-11 18:10:37] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/http/client.py in 937ms +2024-02-11T18:10:37.5817546Z [2024-02-11 18:10:37] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/email/quoprimime.py in 157ms +2024-02-11T18:10:37.6564216Z [2024-02-11 18:10:37] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/http/__init__.py in 95ms +2024-02-11T18:10:37.7077546Z [2024-02-11 18:10:37] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/email/base64mime.py in 50ms +2024-02-11T18:10:37.9969489Z [2024-02-11 18:10:37] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/email/header.py in 415ms +2024-02-11T18:10:38.0106805Z [2024-02-11 18:10:38] [build-stdout] [INFO] [1] Extracted module _datetime in 14ms +2024-02-11T18:10:38.0301246Z [2024-02-11 18:10:38] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/email/_parseaddr.py in 449ms +2024-02-11T18:10:38.0332965Z [2024-02-11 18:10:38] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/xml/__init__.py in 17ms +2024-02-11T18:10:38.0343975Z [2024-02-11 18:10:38] [build-stdout] [INFO] [1] Extracted module pwd in 6ms +2024-02-11T18:10:38.0497441Z [2024-02-11 18:10:38] [build-stdout] [INFO] [1] Extracted module pyexpat in 15ms +2024-02-11T18:10:38.0517307Z [2024-02-11 18:10:38] [build-stdout] [INFO] [4] Extracted module _ast in 27ms +2024-02-11T18:10:38.0859498Z [2024-02-11 18:10:38] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/email/encoders.py in 34ms +2024-02-11T18:10:38.2535806Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/gzip.py in 545ms +2024-02-11T18:10:38.3506880Z [2024-02-11 18:10:38] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/multiprocessing/util.py in 300ms +2024-02-11T18:10:38.6182416Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/multiprocessing/forkserver.py in 267ms +2024-02-11T18:10:38.6200037Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/test/support in 0ms +2024-02-11T18:10:38.7760594Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/multiprocessing/resource_tracker.py in 154ms +2024-02-11T18:10:38.9621615Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/multiprocessing/spawn.py in 185ms +2024-02-11T18:10:38.9698655Z [2024-02-11 18:10:38] [build-stdout] [INFO] [3] Extracted module _posixshmem in 7ms +2024-02-11T18:10:39.2019261Z [2024-02-11 18:10:39] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/runpy.py in 231ms +2024-02-11T18:10:39.3620772Z [2024-02-11 18:10:39] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/pdb.py in 1275ms +2024-02-11T18:10:39.6564013Z [2024-02-11 18:10:39] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/cmd.py in 292ms +2024-02-11T18:10:39.6595802Z [2024-02-11 18:10:39] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/pkgutil.py in 456ms +2024-02-11T18:10:39.6944951Z [2024-02-11 18:10:39] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/test/support/__init__.py in 1341ms +2024-02-11T18:10:39.8236323Z [2024-02-11 18:10:39] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/glob.py in 164ms +2024-02-11T18:10:39.9702929Z [2024-02-11 18:10:39] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/code.py in 145ms +2024-02-11T18:10:40.2339828Z [2024-02-11 18:10:40] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/bdb.py in 577ms +2024-02-11T18:10:40.3804406Z [2024-02-11 18:10:40] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/ctypes/wintypes.py in 145ms +2024-02-11T18:10:40.4302095Z [2024-02-11 18:10:40] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/distutils/errors.py in 50ms +2024-02-11T18:10:40.4374208Z [2024-02-11 18:10:40] [build-stdout] [INFO] [4] Extracted module _testinternalcapi in 7ms +2024-02-11T18:10:40.4848243Z [2024-02-11 18:10:40] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/zipimport.py in 510ms +2024-02-11T18:10:40.4863269Z [2024-02-11 18:10:40] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/distutils in 2ms +2024-02-11T18:10:40.4876398Z [2024-02-11 18:10:40] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/ctypes in 1ms +2024-02-11T18:10:40.4943374Z [2024-02-11 18:10:40] [build-stdout] [INFO] [3] Extracted module gc in 7ms +2024-02-11T18:10:40.8095023Z [2024-02-11 18:10:40] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/_pydecimal.py in 3858ms +2024-02-11T18:10:40.8222367Z [2024-02-11 18:10:40] [build-stdout] [INFO] [2] Extracted module readline in 13ms +2024-02-11T18:10:40.8653677Z [2024-02-11 18:10:40] [build-stdout] [INFO] [2] Extracted module _testcapi in 43ms +2024-02-11T18:10:40.8722410Z [2024-02-11 18:10:40] [build-stdout] [INFO] [2] Extracted module faulthandler in 6ms +2024-02-11T18:10:41.0326307Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/ccompiler.py in 537ms +2024-02-11T18:10:41.1476734Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/test/support/import_helper.py in 114ms +2024-02-11T18:10:41.1986216Z [2024-02-11 18:10:41] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/ctypes/util.py in 325ms +2024-02-11T18:10:41.3434397Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/test/support/testresult.py in 194ms +2024-02-11T18:10:41.6082112Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/sysconfig.py in 262ms +2024-02-11T18:10:41.6219580Z [2024-02-11 18:10:41] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/ctypes/__init__.py in 423ms +2024-02-11T18:10:41.6372402Z [2024-02-11 18:10:41] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/distutils/__init__.py in 15ms +2024-02-11T18:10:41.6879807Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/spawn.py in 76ms +2024-02-11T18:10:41.7959676Z [2024-02-11 18:10:41] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/codeop.py in 99ms +2024-02-11T18:10:42.1341761Z [2024-02-11 18:10:42] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/util.py in 347ms +2024-02-11T18:10:42.1837227Z [2024-02-11 18:10:42] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/dep_util.py in 49ms +2024-02-11T18:10:42.2428485Z [2024-02-11 18:10:42] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/sysconfig.py in 605ms +2024-02-11T18:10:42.3109862Z [2024-02-11 18:10:42] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/distutils/log.py in 68ms +2024-02-11T18:10:42.4610812Z [2024-02-11 18:10:42] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/distutils/file_util.py in 150ms +2024-02-11T18:10:42.5345093Z [2024-02-11 18:10:42] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/fancy_getopt.py in 350ms +2024-02-11T18:10:42.5356233Z [2024-02-11 18:10:42] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/xml/etree in 0ms +2024-02-11T18:10:42.5892726Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/pydoc.py in 2893ms +2024-02-11T18:10:42.6646620Z [2024-02-11 18:10:42] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/distutils/dir_util.py in 202ms +2024-02-11T18:10:42.7328618Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/ctypes/_aix.py in 143ms +2024-02-11T18:10:42.7361137Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted folder /usr/lib/python3.10/lib2to3 in 0ms +2024-02-11T18:10:42.7824838Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/_aix_support.py in 45ms +2024-02-11T18:10:42.7868865Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/xml/etree/__init__.py in 3ms +2024-02-11T18:10:42.7932834Z [2024-02-11 18:10:42] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/distutils/debug.py in 5ms +2024-02-11T18:10:42.8790164Z [2024-02-11 18:10:42] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/urllib/request.py in 2441ms +2024-02-11T18:10:42.9133542Z [2024-02-11 18:10:42] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/test/support/os_helper.py in 377ms +2024-02-11T18:10:43.0295308Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/distutils/filelist.py in 235ms +2024-02-11T18:10:43.0369025Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/lib2to3/__init__.py in 7ms +2024-02-11T18:10:43.0809814Z [2024-02-11 18:10:43] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/distutils/text_file.py in 167ms +2024-02-11T18:10:43.4328003Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/_osx_support.py in 395ms +2024-02-11T18:10:43.4977960Z [2024-02-11 18:10:43] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lib2to3/refactor.py in 617ms +2024-02-11T18:10:43.5004670Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/_bootsubprocess.py in 68ms +2024-02-11T18:10:43.5344278Z [2024-02-11 18:10:43] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/tty.py in 37ms +2024-02-11T18:10:43.5401477Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/ctypes/_endian.py in 38ms +2024-02-11T18:10:43.6530277Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/py_compile.py in 113ms +2024-02-11T18:10:43.7026766Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/urllib/error.py in 48ms +2024-02-11T18:10:43.7737585Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/nturl2path.py in 70ms +2024-02-11T18:10:43.8360338Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/urllib/response.py in 61ms +2024-02-11T18:10:43.8496885Z [2024-02-11 18:10:43] [build-stdout] [INFO] [1] Extracted module _ctypes in 13ms +2024-02-11T18:10:43.9645352Z [2024-02-11 18:10:43] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/http/server.py in 883ms +2024-02-11T18:10:43.9766970Z [2024-02-11 18:10:43] [build-stdout] [INFO] [3] Extracted module termios in 10ms +2024-02-11T18:10:44.0922689Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/xml/etree/ElementTree.py in 1426ms +2024-02-11T18:10:44.1639419Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/lib2to3/pgen2/token.py in 71ms +2024-02-11T18:10:44.2081676Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/lib2to3/pgen2/__init__.py in 44ms +2024-02-11T18:10:44.2096158Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted folder /usr/lib/python3.10/ctypes/__pycache__ in 0ms +2024-02-11T18:10:44.2619938Z [2024-02-11 18:10:44] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/ftplib.py in 727ms +2024-02-11T18:10:44.2869604Z [2024-02-11 18:10:44] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lib2to3/pygram.py in 25ms +2024-02-11T18:10:44.3237020Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/lib2to3/btm_matcher.py in 113ms +2024-02-11T18:10:44.3486838Z [2024-02-11 18:10:44] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/webbrowser.py in 498ms +2024-02-11T18:10:44.3492707Z [2024-02-11 18:10:44] [build-stdout] [INFO] [1] Extracted folder /usr/lib/python3.10/html in 1ms +2024-02-11T18:10:44.4782505Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/lib2to3/pgen2/driver.py in 154ms +2024-02-11T18:10:44.4962760Z [2024-02-11 18:10:44] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/lib2to3/pytree.py in 518ms +2024-02-11T18:10:44.7138928Z [2024-02-11 18:10:44] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lib2to3/fixer_util.py in 426ms +2024-02-11T18:10:44.7342551Z [2024-02-11 18:10:44] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/socketserver.py in 381ms +2024-02-11T18:10:44.8062622Z [2024-02-11 18:10:44] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/xml/etree/ElementPath.py in 310ms +2024-02-11T18:10:44.8065695Z [2024-02-11 18:10:44] [build-stdout] [INFO] [3] Extracted folder /usr/lib/python3.10/lib2to3/pgen2 in 0ms +2024-02-11T18:10:44.8528543Z [2024-02-11 18:10:44] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/mimetypes.py in 374ms +2024-02-11T18:10:44.8716496Z [2024-02-11 18:10:44] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/netrc.py in 141ms +2024-02-11T18:10:44.8816926Z [2024-02-11 18:10:44] [build-stdout] [INFO] [1] Extracted module _elementtree in 10ms +2024-02-11T18:10:44.9131795Z [2024-02-11 18:10:44] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/html/__init__.py in 106ms +2024-02-11T18:10:45.0085568Z [2024-02-11 18:10:45] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/lib2to3/pgen2/parse.py in 126ms +2024-02-11T18:10:45.0701956Z [2024-02-11 18:10:45] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/lib2to3/pgen2/grammar.py in 61ms +2024-02-11T18:10:45.0708080Z [2024-02-11 18:10:45] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/lib2to3/btm_utils.py in 217ms +2024-02-11T18:10:45.2768552Z [2024-02-11 18:10:45] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/lib2to3/patcomp.py in 206ms +2024-02-11T18:10:45.2805046Z [2024-02-11 18:10:45] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lib2to3/pgen2/tokenize.py in 566ms +2024-02-11T18:10:45.2982168Z [2024-02-11 18:10:45] [build-stdout] [INFO] [3] Extracted file /usr/lib/python3.10/lib2to3/pgen2/pgen.py in 385ms +2024-02-11T18:10:45.3206886Z [2024-02-11 18:10:45] [build-stdout] [INFO] [4] Extracted file /usr/lib/python3.10/lib2to3/pgen2/literals.py in 40ms +2024-02-11T18:10:45.3741037Z [2024-02-11 18:10:45] [build-stdout] [INFO] [2] Extracted file /usr/lib/python3.10/shlex.py in 303ms +2024-02-11T18:10:46.0852941Z [2024-02-11 18:10:46] [build-stdout] [INFO] [1] Extracted file /usr/lib/python3.10/html/entities.py in 808ms +2024-02-11T18:10:46.1730120Z [2024-02-11 18:10:46] [build-stdout] [INFO] Processed 447 modules in 34.45s +2024-02-11T18:10:46.2289069Z ##[endgroup] +2024-02-11T18:10:46.2295984Z ##[group]Finalizing python +2024-02-11T18:10:46.2298267Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database finalize --finalize-dataset --threads=4 --ram=14567 /home/runner/work/_temp/codeql_databases/python +2024-02-11T18:10:46.8624229Z Running pre-finalize script /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/python/tools/pre-finalize.sh in /home/runner/work/fakeredis-py/fakeredis-py. +2024-02-11T18:10:47.5607417Z [2024-02-11 18:10:47] [build-stderr] Scanning for files in /home/runner/work/fakeredis-py/fakeredis-py... +2024-02-11T18:10:47.6412706Z [2024-02-11 18:10:47] [build-stderr] /home/runner/work/_temp/codeql_databases/python: Indexing files in in /home/runner/work/fakeredis-py/fakeredis-py... +2024-02-11T18:10:47.6738215Z [2024-02-11 18:10:47] [build-stderr] Running command in /home/runner/work/fakeredis-py/fakeredis-py: [/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/yaml/tools/index-files.sh, /home/runner/work/_temp/codeql_databases/python/working/files-to-index3960889441726550421.list] +2024-02-11T18:10:48.3046369Z Running TRAP import for CodeQL database at /home/runner/work/_temp/codeql_databases/python... +2024-02-11T18:10:48.3170292Z Falling back to 2.15.x RAM sizing, for CodeQL Action compatibility. +2024-02-11T18:10:49.2027797Z Importing TRAP files +2024-02-11T18:10:52.5185081Z Merging relations +2024-02-11T18:10:53.5291437Z Finished writing database (relations: 63.29 MiB; string pool: 11.03 MiB). +2024-02-11T18:10:53.5503613Z TRAP import complete (5.2s). +2024-02-11T18:10:54.1067251Z Finished zipping source archive (1.64 MiB). +2024-02-11T18:10:54.1180722Z ##[endgroup] +2024-02-11T18:10:54.1185428Z ##[group]Running queries for python +2024-02-11T18:10:54.1193593Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database run-queries --ram=14567 --threads=4 /home/runner/work/_temp/codeql_databases/python --min-disk-free=1024 -v --expect-discarded-cache --intra-layer-parallelism +2024-02-11T18:10:54.7329030Z Writing logs to /home/runner/work/_temp/codeql_databases/python/log/database-run-queries-20240211.181054.729.log. +2024-02-11T18:10:54.7853806Z Falling back to 2.15.x RAM sizing, for CodeQL Action compatibility. +2024-02-11T18:10:55.3766365Z Writing logs to /home/runner/work/_temp/codeql_databases/python/log/execute-queries-20240211.181055.372.log. +2024-02-11T18:10:55.6656052Z Recording pack reference codeql/python-queries at /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7. +2024-02-11T18:10:57.7966116Z Compiling in 3 threads due to RAM limits. +2024-02-11T18:10:58.4590890Z [1/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-215/FlaskDebug.qlx. +2024-02-11T18:10:58.6329578Z [2/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-295/MissingHostKeyValidation.qlx. +2024-02-11T18:10:58.7321960Z [3/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CVE-2018-1281/BindToAllInterfaces.qlx. +2024-02-11T18:10:58.9865369Z [4/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/ReDoS.qlx. +2024-02-11T18:10:59.2519715Z [5/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/PolynomialReDoS.qlx. +2024-02-11T18:10:59.4179247Z [6/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/RegexInjection.qlx. +2024-02-11T18:10:59.5723909Z [7/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-502/UnsafeDeserialization.qlx. +2024-02-11T18:10:59.6993756Z [8/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-116/BadTagFilter.qlx. +2024-02-11T18:10:59.8210063Z [9/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-079/ReflectedXss.qlx. +2024-02-11T18:10:59.9353539Z [10/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-209/StackTraceExposure.qlx. +2024-02-11T18:11:00.0416314Z [11/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-377/InsecureTemporaryFile.qlx. +2024-02-11T18:11:00.1095099Z [12/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureDefaultProtocol.qlx. +2024-02-11T18:11:00.2181388Z [13/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-089/SqlInjection.qlx. +2024-02-11T18:11:00.3094005Z [14/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/BrokenCryptoAlgorithm.qlx. +2024-02-11T18:11:00.4025405Z [15/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureProtocol.qlx. +2024-02-11T18:11:00.5502889Z [16/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/WeakSensitiveDataHashing.qlx. +2024-02-11T18:11:00.6646192Z [17/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-643/XpathInjection.qlx. +2024-02-11T18:11:00.7242083Z [18/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-326/WeakCryptoKey.qlx. +2024-02-11T18:11:00.8492915Z [19/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-611/Xxe.qlx. +2024-02-11T18:11:00.9706922Z [20/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-285/PamAuthorization.qlx. +2024-02-11T18:11:01.1724119Z [21/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-090/LdapInjection.qlx. +2024-02-11T18:11:01.2337981Z [22/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/OverlyLargeRange.qlx. +2024-02-11T18:11:01.3245459Z [23/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-094/CodeInjection.qlx. +2024-02-11T18:11:01.3332812Z [24/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteUrlSubstringSanitization.qlx. +2024-02-11T18:11:01.4104512Z [25/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteHostnameRegExp.qlx. +2024-02-11T18:11:01.5482226Z [26/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-352/CSRFProtectionDisabled.qlx. +2024-02-11T18:11:01.6597949Z [27/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-022/PathInjection.qlx. +2024-02-11T18:11:01.8626091Z [28/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-776/XmlBomb.qlx. +2024-02-11T18:11:01.9597819Z [29/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-078/CommandInjection.qlx. +2024-02-11T18:11:02.0587440Z [30/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextStorage.qlx. +2024-02-11T18:11:02.1595896Z [31/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextLogging.qlx. +2024-02-11T18:11:02.2633886Z [32/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-601/UrlRedirect.qlx. +2024-02-11T18:11:02.3520978Z [33/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Expressions/UseofInput.qlx. +2024-02-11T18:11:02.4505036Z [34/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-918/FullServerSideRequestForgery.qlx. +2024-02-11T18:11:02.4525129Z [35/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/SuccessfullyExtractedFiles.qlx. +2024-02-11T18:11:02.4527805Z [36/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/ExtractionWarnings.qlx. +2024-02-11T18:11:02.4650434Z [37/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfCode.qlx. +2024-02-11T18:11:02.4817797Z [38/38] Loaded /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfUserCode.qlx. +2024-02-11T18:11:02.5503352Z Starting evaluation of codeql/python-queries/Diagnostics/ExtractionWarnings.ql. +2024-02-11T18:11:02.5516326Z Starting evaluation of codeql/python-queries/Diagnostics/SuccessfullyExtractedFiles.ql. +2024-02-11T18:11:02.5530818Z Starting evaluation of codeql/python-queries/Expressions/UseofInput.ql. +2024-02-11T18:11:02.5568128Z Starting evaluation of codeql/python-queries/Security/CVE-2018-1281/BindToAllInterfaces.ql. +2024-02-11T18:11:02.5932276Z Starting evaluation of codeql/python-queries/Security/CWE-020/IncompleteHostnameRegExp.ql. +2024-02-11T18:11:02.7469226Z [1/38 eval 196ms] Evaluation done; writing results to codeql/python-queries/Diagnostics/ExtractionWarnings.bqrs. +2024-02-11T18:11:02.8125983Z [2/38 eval 260ms] Evaluation done; writing results to codeql/python-queries/Diagnostics/SuccessfullyExtractedFiles.bqrs. +2024-02-11T18:11:11.6683685Z Starting evaluation of codeql/python-queries/Security/CWE-020/IncompleteUrlSubstringSanitization.ql. +2024-02-11T18:11:12.3490686Z [3/38 eval 673ms] Evaluation done; writing results to codeql/python-queries/Security/CWE-020/IncompleteUrlSubstringSanitization.bqrs. +2024-02-11T18:11:12.4364981Z Starting evaluation of codeql/python-queries/Security/CWE-020/OverlyLargeRange.ql. +2024-02-11T18:11:12.4408542Z Starting evaluation of codeql/python-queries/Security/CWE-022/PathInjection.ql. +2024-02-11T18:11:13.1575733Z Starting evaluation of codeql/python-queries/Security/CWE-078/CommandInjection.ql. +2024-02-11T18:11:13.2433197Z Starting evaluation of codeql/python-queries/Security/CWE-079/ReflectedXss.ql. +2024-02-11T18:11:13.6687485Z Starting evaluation of codeql/python-queries/Security/CWE-089/SqlInjection.ql. +2024-02-11T18:11:13.7062377Z Starting evaluation of codeql/python-queries/Security/CWE-090/LdapInjection.ql. +2024-02-11T18:11:13.7082038Z Starting evaluation of codeql/python-queries/Security/CWE-094/CodeInjection.ql. +2024-02-11T18:11:17.4958705Z Starting evaluation of codeql/python-queries/Security/CWE-116/BadTagFilter.ql. +2024-02-11T18:11:17.4960686Z Starting evaluation of codeql/python-queries/Security/CWE-209/StackTraceExposure.ql. +2024-02-11T18:11:17.5062844Z Starting evaluation of codeql/python-queries/Security/CWE-215/FlaskDebug.ql. +2024-02-11T18:11:17.6364052Z Starting evaluation of codeql/python-queries/Security/CWE-285/PamAuthorization.ql. +2024-02-11T18:11:17.6645356Z Starting evaluation of codeql/python-queries/Security/CWE-295/MissingHostKeyValidation.ql. +2024-02-11T18:11:17.6693076Z Starting evaluation of codeql/python-queries/Security/CWE-312/CleartextLogging.ql. +2024-02-11T18:11:17.7132703Z Starting evaluation of codeql/python-queries/Security/CWE-312/CleartextStorage.ql. +2024-02-11T18:11:17.7196129Z Starting evaluation of codeql/python-queries/Security/CWE-326/WeakCryptoKey.ql. +2024-02-11T18:11:17.7258540Z Starting evaluation of codeql/python-queries/Security/CWE-327/BrokenCryptoAlgorithm.ql. +2024-02-11T18:11:17.7940332Z Starting evaluation of codeql/python-queries/Security/CWE-327/InsecureDefaultProtocol.ql. +2024-02-11T18:11:17.7953474Z Starting evaluation of codeql/python-queries/Security/CWE-327/InsecureProtocol.ql. +2024-02-11T18:11:17.7968109Z Starting evaluation of codeql/python-queries/Security/CWE-327/WeakSensitiveDataHashing.ql. +2024-02-11T18:11:19.0714704Z Starting evaluation of codeql/python-queries/Security/CWE-352/CSRFProtectionDisabled.ql. +2024-02-11T18:11:19.0726492Z Starting evaluation of codeql/python-queries/Security/CWE-377/InsecureTemporaryFile.ql. +2024-02-11T18:11:19.0754441Z Starting evaluation of codeql/python-queries/Security/CWE-502/UnsafeDeserialization.ql. +2024-02-11T18:11:19.0798837Z [4/38 eval 4ms] Evaluation done; writing results to codeql/python-queries/Security/CWE-352/CSRFProtectionDisabled.bqrs. +2024-02-11T18:11:19.1639003Z Starting evaluation of codeql/python-queries/Security/CWE-601/UrlRedirect.ql. +2024-02-11T18:11:19.1683514Z Starting evaluation of codeql/python-queries/Security/CWE-611/Xxe.ql. +2024-02-11T18:11:19.1971937Z Starting evaluation of codeql/python-queries/Security/CWE-643/XpathInjection.ql. +2024-02-11T18:11:19.2639642Z Starting evaluation of codeql/python-queries/Security/CWE-730/PolynomialReDoS.ql. +2024-02-11T18:11:19.2917503Z Starting evaluation of codeql/python-queries/Security/CWE-730/ReDoS.ql. +2024-02-11T18:11:19.2996320Z Starting evaluation of codeql/python-queries/Security/CWE-730/RegexInjection.ql. +2024-02-11T18:11:19.3922680Z Starting evaluation of codeql/python-queries/Security/CWE-776/XmlBomb.ql. +2024-02-11T18:11:19.4040083Z Starting evaluation of codeql/python-queries/Security/CWE-918/FullServerSideRequestForgery.ql. +2024-02-11T18:11:19.5402703Z Starting evaluation of codeql/python-queries/Summary/LinesOfCode.ql. +2024-02-11T18:11:19.5431454Z Starting evaluation of codeql/python-queries/Summary/LinesOfUserCode.ql. +2024-02-11T18:11:19.5451164Z [5/38 eval 4ms] Evaluation done; writing results to codeql/python-queries/Summary/LinesOfCode.bqrs. +2024-02-11T18:11:20.2723274Z [6/38 eval 728ms] Evaluation done; writing results to codeql/python-queries/Summary/LinesOfUserCode.bqrs. +2024-02-11T18:11:23.7398185Z [7/38 eval 6s] Evaluation done; writing results to codeql/python-queries/Security/CWE-326/WeakCryptoKey.bqrs. +2024-02-11T18:11:27.3397402Z [8/38 eval 9.5s] Evaluation done; writing results to codeql/python-queries/Security/CWE-327/InsecureDefaultProtocol.bqrs. +2024-02-11T18:11:27.3624512Z [9/38 eval 24.8s] Evaluation done; writing results to codeql/python-queries/Expressions/UseofInput.bqrs. +2024-02-11T18:11:27.8394231Z [10/38 eval 10.2s] Evaluation done; writing results to codeql/python-queries/Security/CWE-295/MissingHostKeyValidation.bqrs. +2024-02-11T18:11:28.2805272Z [11/38 eval 9.1s] Evaluation done; writing results to codeql/python-queries/Security/CWE-601/UrlRedirect.bqrs. +2024-02-11T18:11:28.3534423Z [12/38 eval 25.8s] Evaluation done; writing results to codeql/python-queries/Security/CVE-2018-1281/BindToAllInterfaces.bqrs. +2024-02-11T18:11:30.3647145Z [13/38 eval 17.9s] Evaluation done; writing results to codeql/python-queries/Security/CWE-020/OverlyLargeRange.bqrs. +2024-02-11T18:11:30.6375177Z [14/38 eval 28s] Evaluation done; writing results to codeql/python-queries/Security/CWE-020/IncompleteHostnameRegExp.bqrs. +2024-02-11T18:11:31.0506310Z [15/38 eval 17.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-089/SqlInjection.bqrs. +2024-02-11T18:11:31.1714834Z [16/38 eval 18.7s] Evaluation done; writing results to codeql/python-queries/Security/CWE-022/PathInjection.bqrs. +2024-02-11T18:11:31.1945637Z [17/38 eval 17.9s] Evaluation done; writing results to codeql/python-queries/Security/CWE-079/ReflectedXss.bqrs. +2024-02-11T18:11:31.2043769Z [18/38 eval 17.5s] Evaluation done; writing results to codeql/python-queries/Security/CWE-094/CodeInjection.bqrs. +2024-02-11T18:11:31.2197906Z [19/38 eval 18.1s] Evaluation done; writing results to codeql/python-queries/Security/CWE-078/CommandInjection.bqrs. +2024-02-11T18:11:31.3296507Z [20/38 eval 13.8s] Evaluation done; writing results to codeql/python-queries/Security/CWE-215/FlaskDebug.bqrs. +2024-02-11T18:11:31.3683063Z [21/38 eval 17.7s] Evaluation done; writing results to codeql/python-queries/Security/CWE-090/LdapInjection.bqrs. +2024-02-11T18:11:31.6353516Z [22/38 eval 14.1s] Evaluation done; writing results to codeql/python-queries/Security/CWE-209/StackTraceExposure.bqrs. +2024-02-11T18:11:31.7584010Z [23/38 eval 14.1s] Evaluation done; writing results to codeql/python-queries/Security/CWE-285/PamAuthorization.bqrs. +2024-02-11T18:11:31.8954086Z [24/38 eval 14.2s] Evaluation done; writing results to codeql/python-queries/Security/CWE-312/CleartextStorage.bqrs. +2024-02-11T18:11:32.0647585Z [25/38 eval 14.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-312/CleartextLogging.bqrs. +2024-02-11T18:11:32.0963916Z [26/38 eval 14.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-327/BrokenCryptoAlgorithm.bqrs. +2024-02-11T18:11:32.3294714Z [27/38 eval 13.3s] Evaluation done; writing results to codeql/python-queries/Security/CWE-377/InsecureTemporaryFile.bqrs. +2024-02-11T18:11:32.4662697Z [28/38 eval 15s] Evaluation done; writing results to codeql/python-queries/Security/CWE-116/BadTagFilter.bqrs. +2024-02-11T18:11:32.4912517Z [29/38 eval 14.7s] Evaluation done; writing results to codeql/python-queries/Security/CWE-327/WeakSensitiveDataHashing.bqrs. +2024-02-11T18:11:32.5307421Z [30/38 eval 13.3s] Evaluation done; writing results to codeql/python-queries/Security/CWE-643/XpathInjection.bqrs. +2024-02-11T18:11:32.6256419Z [31/38 eval 13.5s] Evaluation done; writing results to codeql/python-queries/Security/CWE-502/UnsafeDeserialization.bqrs. +2024-02-11T18:11:32.6436167Z [32/38 eval 13.5s] Evaluation done; writing results to codeql/python-queries/Security/CWE-611/Xxe.bqrs. +2024-02-11T18:11:32.6818328Z [33/38 eval 13.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-730/ReDoS.bqrs. +2024-02-11T18:11:32.7115869Z [34/38 eval 13.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-730/PolynomialReDoS.bqrs. +2024-02-11T18:11:32.7842865Z [35/38 eval 15s] Evaluation done; writing results to codeql/python-queries/Security/CWE-327/InsecureProtocol.bqrs. +2024-02-11T18:11:32.8111722Z [36/38 eval 13.4s] Evaluation done; writing results to codeql/python-queries/Security/CWE-776/XmlBomb.bqrs. +2024-02-11T18:11:32.9527977Z [37/38 eval 13.6s] Evaluation done; writing results to codeql/python-queries/Security/CWE-730/RegexInjection.bqrs. +2024-02-11T18:11:33.0243626Z [38/38 eval 13.6s] Evaluation done; writing results to codeql/python-queries/Security/CWE-918/FullServerSideRequestForgery.bqrs. +2024-02-11T18:11:33.0246113Z Shutting down query evaluator. +2024-02-11T18:11:33.1687583Z ##[group]Interpreting results for python +2024-02-11T18:11:33.1698109Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database interpret-results --threads=4 --format=sarif-latest -v --output=../results/python.sarif --no-sarif-add-snippets --print-diagnostics-summary --print-metrics-summary --sarif-add-baseline-file-info --sarif-add-query-help --sarif-group-rules-by-pack --sarif-codescanning-config /home/runner/work/_temp/user-config.yaml --sarif-category /language:python --sublanguage-file-coverage --sarif-include-diagnostics --new-analysis-summary /home/runner/work/_temp/codeql_databases/python +2024-02-11T18:11:33.7938334Z Writing logs to /home/runner/work/_temp/codeql_databases/python/log/database-interpret-results-20240211.181133.790.log. +2024-02-11T18:11:33.9422487Z Recording pack reference codeql/python-queries at /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7. +2024-02-11T18:11:35.2462165Z The --sarif-add-query-help flag is deprecated. Use --sarif-include-query-help option instead. +2024-02-11T18:11:35.2470770Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-215/FlaskDebug.ql... +2024-02-11T18:11:35.2708990Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-215/FlaskDebug.bqrs. +2024-02-11T18:11:35.2980856Z Interpreted problem query "Flask app is run in debug mode" (py/flask-debug) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-215/FlaskDebug.ql. +2024-02-11T18:11:35.2983867Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-295/MissingHostKeyValidation.ql... +2024-02-11T18:11:35.3099245Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-295/MissingHostKeyValidation.bqrs. +2024-02-11T18:11:35.3160936Z Interpreted problem query "Accepting unknown SSH host keys when using Paramiko" (py/paramiko-missing-host-key-validation) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-295/MissingHostKeyValidation.ql. +2024-02-11T18:11:35.3164621Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CVE-2018-1281/BindToAllInterfaces.ql... +2024-02-11T18:11:35.3258261Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CVE-2018-1281/BindToAllInterfaces.bqrs. +2024-02-11T18:11:35.3315212Z Interpreted problem query "Binding a socket to all network interfaces" (py/bind-socket-all-network-interfaces) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CVE-2018-1281/BindToAllInterfaces.ql. +2024-02-11T18:11:35.3319316Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/RegexInjection.ql... +2024-02-11T18:11:35.3396013Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-730/RegexInjection.bqrs. +2024-02-11T18:11:35.3463158Z Interpreted pathproblem query "Regular expression injection" (py/regex-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/RegexInjection.ql. +2024-02-11T18:11:35.3466493Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/PolynomialReDoS.ql... +2024-02-11T18:11:35.3554441Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-730/PolynomialReDoS.bqrs. +2024-02-11T18:11:35.3633183Z Interpreted pathproblem query "Polynomial regular expression used on uncontrolled data" (py/polynomial-redos) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/PolynomialReDoS.ql. +2024-02-11T18:11:35.3636789Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/ReDoS.ql... +2024-02-11T18:11:35.3721058Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-730/ReDoS.bqrs. +2024-02-11T18:11:35.3781937Z Interpreted problem query "Inefficient regular expression" (py/redos) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-730/ReDoS.ql. +2024-02-11T18:11:35.3785117Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-502/UnsafeDeserialization.ql... +2024-02-11T18:11:35.3876377Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-502/UnsafeDeserialization.bqrs. +2024-02-11T18:11:35.3934169Z Interpreted pathproblem query "Deserialization of user-controlled data" (py/unsafe-deserialization) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-502/UnsafeDeserialization.ql. +2024-02-11T18:11:35.3937562Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-079/ReflectedXss.ql... +2024-02-11T18:11:35.4012290Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-079/ReflectedXss.bqrs. +2024-02-11T18:11:35.4082767Z Interpreted pathproblem query "Reflected server-side cross-site scripting" (py/reflective-xss) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-079/ReflectedXss.ql. +2024-02-11T18:11:35.4086206Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-116/BadTagFilter.ql... +2024-02-11T18:11:35.4163695Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-116/BadTagFilter.bqrs. +2024-02-11T18:11:35.4221614Z Interpreted problem query "Bad HTML filtering regexp" (py/bad-tag-filter) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-116/BadTagFilter.ql. +2024-02-11T18:11:35.4224934Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-209/StackTraceExposure.ql... +2024-02-11T18:11:35.4303552Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-209/StackTraceExposure.bqrs. +2024-02-11T18:11:35.4365739Z Interpreted pathproblem query "Information exposure through an exception" (py/stack-trace-exposure) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-209/StackTraceExposure.ql. +2024-02-11T18:11:35.4369239Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-377/InsecureTemporaryFile.ql... +2024-02-11T18:11:35.4445345Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-377/InsecureTemporaryFile.bqrs. +2024-02-11T18:11:35.4500337Z Interpreted problem query "Insecure temporary file" (py/insecure-temporary-file) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-377/InsecureTemporaryFile.ql. +2024-02-11T18:11:35.4503604Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-089/SqlInjection.ql... +2024-02-11T18:11:35.4574511Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-089/SqlInjection.bqrs. +2024-02-11T18:11:35.4625584Z Interpreted pathproblem query "SQL query built from user-controlled sources" (py/sql-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-089/SqlInjection.ql. +2024-02-11T18:11:35.4629182Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureDefaultProtocol.ql... +2024-02-11T18:11:35.4697149Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-327/InsecureDefaultProtocol.bqrs. +2024-02-11T18:11:35.4750815Z Interpreted problem query "Default version of SSL/TLS may be insecure" (py/insecure-default-protocol) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureDefaultProtocol.ql. +2024-02-11T18:11:35.4754567Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureProtocol.ql... +2024-02-11T18:11:35.4816707Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-327/InsecureProtocol.bqrs. +2024-02-11T18:11:35.4881088Z Interpreted problem query "Use of insecure SSL/TLS version" (py/insecure-protocol) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/InsecureProtocol.ql. +2024-02-11T18:11:35.4884748Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/BrokenCryptoAlgorithm.ql... +2024-02-11T18:11:35.4946396Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-327/BrokenCryptoAlgorithm.bqrs. +2024-02-11T18:11:35.5017392Z Interpreted problem query "Use of a broken or weak cryptographic algorithm" (py/weak-cryptographic-algorithm) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/BrokenCryptoAlgorithm.ql. +2024-02-11T18:11:35.5021385Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/WeakSensitiveDataHashing.ql... +2024-02-11T18:11:35.5089868Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-327/WeakSensitiveDataHashing.bqrs. +2024-02-11T18:11:35.5145163Z Interpreted pathproblem query "Use of a broken or weak cryptographic hashing algorithm on sensitive data" (py/weak-sensitive-data-hashing) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-327/WeakSensitiveDataHashing.ql. +2024-02-11T18:11:35.5149336Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-643/XpathInjection.ql... +2024-02-11T18:11:35.5202631Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-643/XpathInjection.bqrs. +2024-02-11T18:11:35.5264667Z Interpreted pathproblem query "XPath query built from user-controlled sources" (py/xpath-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-643/XpathInjection.ql. +2024-02-11T18:11:35.5268088Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-611/Xxe.ql... +2024-02-11T18:11:35.5323592Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-611/Xxe.bqrs. +2024-02-11T18:11:35.5372594Z Interpreted pathproblem query "XML external entity expansion" (py/xxe) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-611/Xxe.ql. +2024-02-11T18:11:35.5375820Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-326/WeakCryptoKey.ql... +2024-02-11T18:11:35.5428501Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-326/WeakCryptoKey.bqrs. +2024-02-11T18:11:35.5481923Z Interpreted problem query "Use of weak cryptographic key" (py/weak-crypto-key) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-326/WeakCryptoKey.ql. +2024-02-11T18:11:35.5485205Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-285/PamAuthorization.ql... +2024-02-11T18:11:35.5537006Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-285/PamAuthorization.bqrs. +2024-02-11T18:11:35.5587315Z Interpreted pathproblem query "PAM authorization bypass due to incorrect usage" (py/pam-auth-bypass) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-285/PamAuthorization.ql. +2024-02-11T18:11:35.5590971Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-090/LdapInjection.ql... +2024-02-11T18:11:35.5646357Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-090/LdapInjection.bqrs. +2024-02-11T18:11:35.5701930Z Interpreted pathproblem query "LDAP query built from user-controlled sources" (py/ldap-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-090/LdapInjection.ql. +2024-02-11T18:11:35.5705371Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-094/CodeInjection.ql... +2024-02-11T18:11:35.5758577Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-094/CodeInjection.bqrs. +2024-02-11T18:11:35.5828327Z Interpreted pathproblem query "Code injection" (py/code-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-094/CodeInjection.ql. +2024-02-11T18:11:35.5831522Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/OverlyLargeRange.ql... +2024-02-11T18:11:35.5892477Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-020/OverlyLargeRange.bqrs. +2024-02-11T18:11:35.5949451Z Interpreted problem query "Overly permissive regular expression range" (py/overly-large-range) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/OverlyLargeRange.ql. +2024-02-11T18:11:35.5952966Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteHostnameRegExp.ql... +2024-02-11T18:11:35.6002752Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-020/IncompleteHostnameRegExp.bqrs. +2024-02-11T18:11:35.6052765Z Interpreted problem query "Incomplete regular expression for hostnames" (py/incomplete-hostname-regexp) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteHostnameRegExp.ql. +2024-02-11T18:11:35.6056685Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteUrlSubstringSanitization.ql... +2024-02-11T18:11:35.6104689Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-020/IncompleteUrlSubstringSanitization.bqrs. +2024-02-11T18:11:35.6154358Z Interpreted problem query "Incomplete URL substring sanitization" (py/incomplete-url-substring-sanitization) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-020/IncompleteUrlSubstringSanitization.ql. +2024-02-11T18:11:35.6158496Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-352/CSRFProtectionDisabled.ql... +2024-02-11T18:11:35.6206222Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-352/CSRFProtectionDisabled.bqrs. +2024-02-11T18:11:35.6254959Z Interpreted problem query "CSRF protection weakened or disabled" (py/csrf-protection-disabled) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-352/CSRFProtectionDisabled.ql. +2024-02-11T18:11:35.6258474Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-776/XmlBomb.ql... +2024-02-11T18:11:35.6309133Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-776/XmlBomb.bqrs. +2024-02-11T18:11:35.6369689Z Interpreted pathproblem query "XML internal entity expansion" (py/xml-bomb) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-776/XmlBomb.ql. +2024-02-11T18:11:35.6373064Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-022/PathInjection.ql... +2024-02-11T18:11:35.6421539Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-022/PathInjection.bqrs. +2024-02-11T18:11:35.6477298Z Interpreted pathproblem query "Uncontrolled data used in path expression" (py/path-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-022/PathInjection.ql. +2024-02-11T18:11:35.6480756Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-078/CommandInjection.ql... +2024-02-11T18:11:35.6525681Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-078/CommandInjection.bqrs. +2024-02-11T18:11:35.6573123Z Interpreted pathproblem query "Uncontrolled command line" (py/command-line-injection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-078/CommandInjection.ql. +2024-02-11T18:11:35.6576603Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextStorage.ql... +2024-02-11T18:11:35.6626304Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-312/CleartextStorage.bqrs. +2024-02-11T18:11:35.6675422Z Interpreted pathproblem query "Clear-text storage of sensitive information" (py/clear-text-storage-sensitive-data) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextStorage.ql. +2024-02-11T18:11:35.6682222Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextLogging.ql... +2024-02-11T18:11:35.6727021Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-312/CleartextLogging.bqrs. +2024-02-11T18:11:35.6775146Z Interpreted pathproblem query "Clear-text logging of sensitive information" (py/clear-text-logging-sensitive-data) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-312/CleartextLogging.ql. +2024-02-11T18:11:35.6778776Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-601/UrlRedirect.ql... +2024-02-11T18:11:35.6827156Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-601/UrlRedirect.bqrs. +2024-02-11T18:11:35.6876799Z Interpreted pathproblem query "URL redirection from remote source" (py/url-redirection) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-601/UrlRedirect.ql. +2024-02-11T18:11:35.6880287Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-918/FullServerSideRequestForgery.ql... +2024-02-11T18:11:35.6929457Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Security/CWE-918/FullServerSideRequestForgery.bqrs. +2024-02-11T18:11:35.6980161Z Interpreted pathproblem query "Full server-side request forgery" (py/full-ssrf) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Security/CWE-918/FullServerSideRequestForgery.ql. +2024-02-11T18:11:35.6983485Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Expressions/UseofInput.ql... +2024-02-11T18:11:35.7029544Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Expressions/UseofInput.bqrs. +2024-02-11T18:11:35.7106441Z Interpreted problem query "'input' function used in Python 2" (py/use-of-input) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Expressions/UseofInput.ql. +2024-02-11T18:11:35.7112430Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/ExtractionWarnings.ql... +2024-02-11T18:11:35.7165781Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Diagnostics/ExtractionWarnings.bqrs. +2024-02-11T18:11:35.7187616Z Interpreted diagnostic query "Python extraction warnings" (py/diagnostics/extraction-warnings) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/ExtractionWarnings.ql. +2024-02-11T18:11:35.7191165Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/SuccessfullyExtractedFiles.ql... +2024-02-11T18:11:35.7245893Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Diagnostics/SuccessfullyExtractedFiles.bqrs. +2024-02-11T18:11:35.7253678Z Interpreted diagnostic query "Extracted Python files" (py/diagnostics/successfully-extracted-files) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Diagnostics/SuccessfullyExtractedFiles.ql. +2024-02-11T18:11:35.7257110Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfUserCode.ql... +2024-02-11T18:11:35.7304139Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Summary/LinesOfUserCode.bqrs. +2024-02-11T18:11:35.7323437Z Interpreted metric query "Total lines of user written Python code in the database" (py/summary/lines-of-user-code) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfUserCode.ql. +2024-02-11T18:11:35.7326512Z Interpreting /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfCode.ql... +2024-02-11T18:11:35.7375801Z ... found results file at /home/runner/work/_temp/codeql_databases/python/results/codeql/python-queries/Summary/LinesOfCode.bqrs. +2024-02-11T18:11:35.7383957Z Interpreted metric query "Total lines of Python code in the database" (py/summary/lines-of-code) at path /opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/qlpacks/codeql/python-queries/0.9.7/Summary/LinesOfCode.ql. +2024-02-11T18:11:35.8781634Z Interpreting file coverage baseline information +2024-02-11T18:11:35.8787552Z Finished interpreting file coverage baseline information. +2024-02-11T18:11:35.8797004Z Interpreting diagnostic messages... +2024-02-11T18:11:35.9030963Z Found 0 raw diagnostic messages. +2024-02-11T18:11:35.9052818Z Processed diagnostic messages (removed 0 due to limits, created 0 summary diagnostics for status page). +2024-02-11T18:11:35.9070636Z Interpreted diagnostic messages (26ms). +2024-02-11T18:11:36.1332613Z Exporting results to SARIF... +2024-02-11T18:11:36.2960914Z Exported results to SARIF (162ms). +2024-02-11T18:11:36.3238152Z ##[endgroup] +2024-02-11T18:11:36.3241123Z CodeQL scanned 74 out of 74 Python files in this job. Typically CodeQL is configured to analyze a single CodeQL language per job, so check the status page for overall coverage information across all jobs: https://github.com/cunla/fakeredis-py/security/code-scanning/tools/CodeQL/status/ +2024-02-11T18:11:36.3243754Z +2024-02-11T18:11:36.3244640Z ##[group]Cleaning up databases +2024-02-11T18:11:36.3246183Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database cleanup /home/runner/work/_temp/codeql_databases/python --mode=brutal +2024-02-11T18:11:36.9072099Z Cleaning up existing TRAP files after import... +2024-02-11T18:11:36.9124824Z TRAP files cleaned up (3ms). +2024-02-11T18:11:36.9125554Z Cleaning up scratch directory... +2024-02-11T18:11:36.9132165Z Scratch directory cleaned up (0ms). +2024-02-11T18:11:37.0378949Z ##[endgroup] +2024-02-11T18:11:37.0434369Z ##[group]Uploading results +2024-02-11T18:11:37.0435649Z Processing sarif files: ["/home/runner/work/fakeredis-py/results/python.sarif"] +2024-02-11T18:11:37.2268243Z Uploading results +2024-02-11T18:11:37.4271331Z Successfully uploaded results +2024-02-11T18:11:37.4272133Z ##[endgroup] +2024-02-11T18:11:37.4349514Z [command]/opt/hostedtoolcache/CodeQL/2.16.1/x64/codeql/codeql database bundle /home/runner/work/_temp/codeql_databases/python --output=/home/runner/work/_temp/codeql_databases/python.zip --name=python +2024-02-11T18:11:38.1678016Z Creating bundle metadata for /home/runner/work/_temp/codeql_databases/python... +2024-02-11T18:11:38.6268526Z Creating zip file at /home/runner/work/_temp/codeql_databases/python.zip. +2024-02-11T18:11:46.7139079Z ##[group]Waiting for processing to finish +2024-02-11T18:11:46.8479389Z Analysis upload status is complete. +2024-02-11T18:11:46.8480545Z ##[endgroup] +2024-02-11T18:11:46.9891896Z Post job cleanup. +2024-02-11T18:11:47.2402580Z Post job cleanup. +2024-02-11T18:11:47.7001456Z Post job cleanup. +2024-02-11T18:11:47.7775806Z [command]/usr/bin/git version +2024-02-11T18:11:47.7815326Z git version 2.43.0 +2024-02-11T18:11:47.7857895Z Temporarily overriding HOME='/home/runner/work/_temp/574c1a2c-a732-45c9-a13e-68d9b56106e5' before making global git config changes +2024-02-11T18:11:47.7859657Z Adding repository directory to the temporary git global config as a safe directory +2024-02-11T18:11:47.7863791Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/fakeredis-py/fakeredis-py +2024-02-11T18:11:47.7898083Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2024-02-11T18:11:47.7930533Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2024-02-11T18:11:47.8187005Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2024-02-11T18:11:47.8211836Z http.https://github.com/.extraheader +2024-02-11T18:11:47.8223343Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2024-02-11T18:11:47.8255613Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2024-02-11T18:11:47.8710843Z Cleaning up orphan processes \ No newline at end of file