From 92bf028d0a33596eedd23c637c5c953150326276 Mon Sep 17 00:00:00 2001 From: koolkdev Date: Tue, 3 Dec 2024 21:52:52 +0000 Subject: [PATCH] updates --- .devcontainer/Dockerfile | 2 +- .devcontainer/install-gcc.sh | 2 +- .github/dependabot.yml | 12 +++--------- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index a12e5eb..783131a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -2,4 +2,4 @@ FROM mcr.microsoft.com/devcontainers/cpp:1-ubuntu-24.04 # Install gcc 14 COPY ./install-gcc.sh /tmp/ -RUN chmod +x /tmp/install-gcc.sh && /tmp/install-gcc.sh && rm -f /tmp/install-gcc.sh \ No newline at end of file +RUN chmod +x /tmp/install-gcc.sh && /tmp/install-gcc.sh && rm -f /tmp/install-gcc.sh diff --git a/.devcontainer/install-gcc.sh b/.devcontainer/install-gcc.sh index 68e533a..f585af6 100644 --- a/.devcontainer/install-gcc.sh +++ b/.devcontainer/install-gcc.sh @@ -8,4 +8,4 @@ add-apt-repository "deb http://archive.ubuntu.com/ubuntu/ noble main universe" apt-get update apt-get -y install gcc-14 g++-14 update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 10 -update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 10 \ No newline at end of file +update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 10 diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 45b2a56..34c2103 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,20 +1,14 @@ -# 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 more information: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates -# https://containers.dev/guide/dependabot - version: 2 updates: - package-ecosystem: "devcontainers" directory: "/" schedule: - interval: weekly + interval: monthly - package-ecosystem: "gitsubmodule" directory: "/" schedule: - interval: weekly + interval: monthly - package-ecosystem: "github-actions" directory: "/" schedule: - interval: weekly + interval: monthly