From 0ae4c013c4bc5b02700b68e200665d64510b51c7 Mon Sep 17 00:00:00 2001 From: qlrd <106913782+qlrd@users.noreply.github.com> Date: Mon, 27 Nov 2023 17:13:41 -0300 Subject: [PATCH 1/2] added a dependabot to check for updates on pip packages and github actions --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..59976ca0e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 + +updates: + + # Maintain dependencies for GitHub Actions. + # Dependabot will raise pull requests + # for version updates for any outdated actions that it finds. + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + + # Maintain dependencies for python packages. + # Dependabot will raise pull requests + # for version updates for any outdated package that it finds. + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + From 39fbadaf6f9d182d743955a8ab1c265967f38b8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Nov 2023 20:26:22 +0000 Subject: [PATCH 2/2] Bump docker/build-push-action from 4 to 5 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d94f0b60..bb9a2622b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,7 @@ jobs: - name: Build for M5StickV if: matrix.device == 'maixpy_m5stickv' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . build-args: DEVICE=maixpy_m5stickv @@ -61,7 +61,7 @@ jobs: - name: Build for Amigo IPS if: matrix.device == 'maixpy_amigo_ips' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . build-args: DEVICE=maixpy_amigo_ips @@ -85,7 +85,7 @@ jobs: - name: Build for Amigo TFT if: matrix.device == 'maixpy_amigo_tft' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . build-args: DEVICE=maixpy_amigo_tft @@ -109,7 +109,7 @@ jobs: - name: Build for Bit if: matrix.device == 'maixpy_bit' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . build-args: DEVICE=maixpy_bit @@ -133,7 +133,7 @@ jobs: - name: Build for Dock if: matrix.device == 'maixpy_dock' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . build-args: DEVICE=maixpy_dock