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" + diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3d94f0b60..033cd9e4e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: with: submodules: recursive - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 with: driver-opts: network=host - name: Cache Docker layers