From fe6f32caa59d94297e7972001b680afa27933b0a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Feb 2023 14:24:16 +0000 Subject: [PATCH 1/4] Update bdk requirement from 0.26.0 to 0.27.0 Updates the requirements on [bdk](https://github.com/bitcoindevkit/bdk) to permit the latest version. - [Release notes](https://github.com/bitcoindevkit/bdk/releases) - [Changelog](https://github.com/bitcoindevkit/bdk/blob/master/CHANGELOG.md) - [Commits](https://github.com/bitcoindevkit/bdk/compare/v0.26.0...v0.27.0) --- updated-dependencies: - dependency-name: bdk dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 52c1faa..a0120fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ name = "uniffi_lipabusinesslib" nigiri = ["simplelog"] [dependencies] -bdk = { version = "0.26.0", features = ["keys-bip39"] } +bdk = { version = "0.27.0", features = ["keys-bip39"] } bip21 = "0.2.0" log = "0.4.17" rand = "0.8.5" From 231abdf88c8eaf84ec1e207d488e5e4aa9ff2988 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Feb 2023 08:56:07 +0000 Subject: [PATCH 2/4] Update android_logger requirement from 0.12 to 0.13 (#81) Updates the requirements on [android_logger](https://github.com/Nercury/android_logger-rs) to permit the latest version. - [Release notes](https://github.com/Nercury/android_logger-rs/releases) - [Changelog](https://github.com/Nercury/android_logger-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/Nercury/android_logger-rs/compare/v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: android_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a0120fe..a7abce8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ honey-badger = { git = "https://github.com/getlipa/honey-badger", tag = "v1.0.1" oslog = "0.2.0" [target.'cfg(target_os = "android")'.dependencies] -android_logger = "0.12" +android_logger = "0.13" [build-dependencies] camino = "1.1.1" From ce35b5f119ed43471f5cd47a1b2fce1da2254d65 Mon Sep 17 00:00:00 2001 From: Gabriel Comte Date: Mon, 13 Mar 2023 21:00:33 +0100 Subject: [PATCH 3/4] Fix broken Android builds --- Cross.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Cross.toml diff --git a/Cross.toml b/Cross.toml new file mode 100644 index 0000000..077e73d --- /dev/null +++ b/Cross.toml @@ -0,0 +1,8 @@ +# Temporary fix - Once we move to a newer cross version, this file can be removed. +# Checkout https://github.com/cross-rs/cross/issues/1217#issuecomment-1465167806 for details. +[target.aarch64-linux-android] +image = "ghcr.io/cross-rs/aarch64-linux-android:main" +[target.i686-linux-android] +image = "ghcr.io/cross-rs/i686-linux-android:main" +[target.x86_64-linux-android] +image = "ghcr.io/cross-rs/x86_64-linux-android:main" From 8704f73a5233460a79ba45d912e91c3d9a0517a7 Mon Sep 17 00:00:00 2001 From: Gabriel Comte Date: Mon, 13 Mar 2023 20:48:08 +0100 Subject: [PATCH 4/4] Add periodic GitHub actions check --- .github/workflows/build.yml | 2 ++ .github/workflows/code-analysis.yml | 2 ++ .github/workflows/integration-tests.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 04d0525..d90b34b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,8 @@ on: - main - develop pull_request: + schedule: + - cron: '21 2 * * 1-5' # every weekday at 2:21 AM UTC env: CARGO_TERM_COLOR: always diff --git a/.github/workflows/code-analysis.yml b/.github/workflows/code-analysis.yml index 5e84dd4..acd805a 100644 --- a/.github/workflows/code-analysis.yml +++ b/.github/workflows/code-analysis.yml @@ -10,6 +10,8 @@ on: - main - develop pull_request: + schedule: + - cron: '21 2 * * 1-5' # every weekday at 2:21 AM UTC jobs: security-audit: diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 3c1e33d..9ea9f02 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -10,6 +10,8 @@ on: - main - develop pull_request: + schedule: + - cron: '21 2 * * 1-5' # every weekday at 2:21 AM UTC jobs: integration: