Skip to content

Commit c2bb897

Browse files
authored
Merge pull request #72 from codeafix/main
Add dependabot configurations.
2 parents e1739f9 + 46751ff commit c2bb897

3 files changed

Lines changed: 29 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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"

.github/workflows/Build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

web/src/Main.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import Simulation from './Simulation/Simulation';
77
const 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;

0 commit comments

Comments
 (0)