diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..17f79b8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# 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://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +--- +version: 2 +updates: + - package-ecosystem: "docker" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" + - package-ecosystem: "github-actions" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/developer.yml b/.github/workflows/developer.yml index 69b36ca..5d65a93 100644 --- a/.github/workflows/developer.yml +++ b/.github/workflows/developer.yml @@ -49,5 +49,6 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }} + provenance: false build-args: | GIT_VERSION_TAG=dev diff --git a/Dockerfile b/Dockerfile index 5195277..ed01faf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM cm2network/steamcmd:root AS base-amd64 # Ignoring --platform=arm64 as this is required for the multi-arch build to continue to work on amd64 hosts # hadolint ignore=DL3029 -FROM --platform=arm64 sonroyaalmerol/steamcmd-arm64:root-2024-07-14 AS base-arm64 +FROM --platform=arm64 sonroyaalmerol/steamcmd-arm64:root-2024-07-28 AS base-arm64 ARG TARGETARCH # Ignoring the lack of a tag here because the tag is defined in the above FROM lines