diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..4c15c41 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,23 @@ +# 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: "npm" # See documentation for possible values + directory: "web/" # Location of package manifests + schedule: + interval: "weekly" + target-branch: "develop" + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" + target-branch: "develop" + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows` + # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`. + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 288c519..6831ce3 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -11,10 +11,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: '1.21' diff --git a/web/src/Main.tsx b/web/src/Main.tsx index 986b4e5..0bc718b 100644 --- a/web/src/Main.tsx +++ b/web/src/Main.tsx @@ -7,10 +7,10 @@ import Simulation from './Simulation/Simulation'; const Main = () => (
- }/> - }/> + }/> + }/>
) - - export default Main; \ No newline at end of file + + export default Main;