From 05268ba9719d7a0f77e8388e32c4f644ee139598 Mon Sep 17 00:00:00 2001 From: Alejandro Alvarez Date: Wed, 25 Oct 2023 09:26:47 +0200 Subject: [PATCH] Fix properties issue (#89) * chore(pom.xml): update liquibase-parent-pom version from 0.2.6-SNAPSHOT to 0.2.7-SNAPSHOT for all extensions chore(pom.xml): remove redundant sonar.projectName, sonar.projectKey, and sonar.projectDescription properties chore(pom.xml): add sonar.coverage.jacoco.xmlReportPaths property to specify the path of Jacoco XML report chore(pom.xml): update Implementation-Title in manifestEntries to project name instead of artifactId and version chore(pom.xml): add sonar.projectName, sonar.projectKey, and sonar.projectDescription properties to snapshot profile chore(pom.xml): add sonar.projectName, sonar.projectKey, and sonar.projectDescription properties to coverage profile chore(pom.xml): add sonar.projectName, sonar.projectKey, and sonar.projectDescription properties to release profile chore(pom.xml): add sonar.projectName, sonar.projectKey, and sonar.projectDescription properties to remote-repositories profile chore(pom.xml): add sonar.projectName, sonar.projectKey, and sonar.projectDescription properties to run-proguard profile * chore(pom.xml): update scm tag to use HEAD instead of specific version tag The specific version tag was causing issues with the scm connection. By using HEAD, we ensure that the latest version of the project is used for the scm connection. * chore(pom.xml): update liquibase-parent-pom version from 0.2.7-SNAPSHOT to 0.2.8-SNAPSHOT for bug fixes and improvements * chore(release-published.yml): update liquibase/build-logic version to v0.5.3 for pom-release-published.yml workflow chore(snyk-nightly.yml): remove snyk-nightly.yml workflow as it is no longer needed --- .github/workflows/release-published.yml | 2 +- .github/workflows/snyk-nightly.yml | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 .github/workflows/snyk-nightly.yml diff --git a/.github/workflows/release-published.yml b/.github/workflows/release-published.yml index bbe2edf..c1e1c41 100644 --- a/.github/workflows/release-published.yml +++ b/.github/workflows/release-published.yml @@ -11,5 +11,5 @@ permissions: jobs: release: - uses: liquibase/build-logic/.github/workflows/pom-release-published.yml@DAT-15862 + uses: liquibase/build-logic/.github/workflows/pom-release-published.yml@v0.5.3 secrets: inherit diff --git a/.github/workflows/snyk-nightly.yml b/.github/workflows/snyk-nightly.yml deleted file mode 100644 index baaf811..0000000 --- a/.github/workflows/snyk-nightly.yml +++ /dev/null @@ -1,14 +0,0 @@ -# Run Snyk nightly to scan and report security issues on staging. -name: Nightly Snyk Scan - -# Job will run nightly at 02:05 EDT / 01:05 CDT -# Time below is UTC -on: - schedule: - - cron: "5 6 * * *" - workflow_dispatch: - -jobs: - security-scan: - uses: liquibase/build-logic/.github/workflows/synk-nightly.yml@v0.5.3 - secrets: inherit \ No newline at end of file