File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " npm" # See documentation for possible values
9+ directory : " web/" # Location of package manifests
10+ schedule :
11+ interval : " weekly"
12+ target-branch : " develop"
13+ - package-ecosystem : " gomod" # See documentation for possible values
14+ directory : " /" # Location of package manifests
15+ schedule :
16+ interval : " weekly"
17+ target-branch : " develop"
18+ - package-ecosystem : " github-actions"
19+ # Workflow files stored in the default location of `.github/workflows`
20+ # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.
21+ directory : " /"
22+ schedule :
23+ interval : " weekly"
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
1111 build :
1212 runs-on : ubuntu-latest
1313 steps :
14- - uses : actions/checkout@v4
14+ - uses : actions/checkout@v6
1515
1616 - name : Set up Go
17- uses : actions/setup-go@v5
17+ uses : actions/setup-go@v6
1818 with :
1919 go-version : ' 1.21'
2020
Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ import Simulation from './Simulation/Simulation';
77const Main = ( ) => (
88 < main >
99 < Routes >
10- < Route path = '/' element = { < Home /> } />
11- < Route path = '/simulation/:id' element = { < Simulation /> } />
10+ < Route path = '/' element = { < Home /> } />
11+ < Route path = '/simulation/:id' element = { < Simulation /> } />
1212 </ Routes >
1313 </ main >
1414 )
15-
16- export default Main ;
15+
16+ export default Main ;
You can’t perform that action at this time.
0 commit comments