-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DAT-16080 DevOps :: Extension Nightly Builds Failing (#182)
* chore(pom.xml): remove redundant finalName element from pom.xml build configuration * chore(dependabot): add Dependabot configuration file to enable automated dependency updates for Maven and GitHub Actions workflows on a daily basis * chore(workflows): update liquibase build-logic workflows to version v0.5.1 for consistency and potential bug fixes
- Loading branch information
Alejandro Alvarez
authored
Oct 19, 2023
1 parent
7a58161
commit 9b72a91
Showing
6 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: maven | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: daily |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ on: | |
|
||
jobs: | ||
attach-artifact-to-release: | ||
uses: liquibase/build-logic/.github/workflows/[email protected].0 | ||
uses: liquibase/build-logic/.github/workflows/[email protected].1 | ||
secrets: inherit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This workflow will build the extension against the latest Liquibase artifact | ||
name: "Nightly build" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 7 * * 1-5' | ||
|
||
jobs: | ||
nightly-build: | ||
uses: liquibase/build-logic/.github/workflows/[email protected] | ||
with: | ||
nightly: true | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,6 @@ on: | |
|
||
jobs: | ||
create-release: | ||
uses: liquibase/build-logic/.github/workflows/[email protected].0 | ||
uses: liquibase/build-logic/.github/workflows/[email protected].1 | ||
secrets: inherit | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ on: | |
|
||
jobs: | ||
release: | ||
uses: liquibase/build-logic/.github/workflows/[email protected].0 | ||
uses: liquibase/build-logic/.github/workflows/[email protected].1 | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,12 +88,12 @@ jobs: | |
sonar-pr: | ||
needs: [ unit-test ] | ||
uses: liquibase/build-logic/.github/workflows/[email protected].0 | ||
uses: liquibase/build-logic/.github/workflows/[email protected].1 | ||
secrets: inherit | ||
|
||
dependabot: | ||
needs: unit-test | ||
uses: liquibase/build-logic/.github/workflows/[email protected].0 | ||
uses: liquibase/build-logic/.github/workflows/[email protected].1 | ||
secrets: inherit | ||
|
||
# prepare-database: | ||
|