Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
koolkdev committed Dec 3, 2024
1 parent 854c61d commit 92bf028
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
RUN chmod +x /tmp/install-gcc.sh && /tmp/install-gcc.sh && rm -f /tmp/install-gcc.sh
2 changes: 1 addition & 1 deletion .devcontainer/install-gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-14 10
12 changes: 3 additions & 9 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 92bf028

Please sign in to comment.