Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new pr #150

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b3f342e
Create dependaboat.yml
ravirajmcet Mar 20, 2024
6148d49
Bump org.postgresql:postgresql from 42.3.7 to 42.3.9
dependabot[bot] Mar 20, 2024
b35f765
Merge pull request #1 from ravirajmcet/dependabot/maven/org.postgresq…
github-actions[bot] Mar 20, 2024
e78f6a7
Create dependabot.yml
ravirajmcet Mar 20, 2024
44f9e0d
Update pom.xml
ravirajmcet Mar 20, 2024
7324640
Update dependabot.yml
ravirajmcet Mar 20, 2024
4292777
Update pom.xml
ravirajmcet Mar 20, 2024
ff1ec4d
Update pom.xml
ravirajmcet Mar 20, 2024
94601b6
Bump mysql:mysql-connector-java from 8.0.26 to 8.0.28
dependabot[bot] Mar 20, 2024
5cba1da
Merge pull request #2 from ravirajmcet/dependabot/maven/mysql-mysql-c…
github-actions[bot] Mar 20, 2024
0266c7c
Update pom.xml
ravirajmcet Mar 20, 2024
4476c26
Update dependabot.yml
ravirajmcet Mar 20, 2024
0c78f0e
Update dependabot.yml
ravirajmcet Mar 20, 2024
99a3b7e
Update dependabot.yml
ravirajmcet Mar 20, 2024
829523c
Update pom.xml
ravirajmcet Mar 20, 2024
7e8eba6
Bump org.postgresql:postgresql from 42.3.6 to 42.3.9
dependabot[bot] Mar 20, 2024
a59e392
Merge pull request #3 from ravirajmcet/dependabot/maven/org.postgresq…
github-actions[bot] Mar 20, 2024
68c4ab5
Bump mysql:mysql-connector-java from 8.0.22 to 8.0.28
dependabot[bot] Mar 20, 2024
d395083
Merge pull request #4 from ravirajmcet/dependabot/maven/mysql-mysql-c…
github-actions[bot] Mar 20, 2024
ae3ea74
Update pom.xml
ravirajmcet Mar 20, 2024
564c71e
Update pom.xml
ravirajmcet Mar 20, 2024
04636a1
Update dependabot.yml
ravirajmcet Mar 20, 2024
a75da8c
Bump org.postgresql:postgresql from 42.3.7 to 42.3.9
dependabot[bot] Mar 20, 2024
dbabcf4
Merge pull request #5 from ravirajmcet/dependabot/maven/org.postgresq…
github-actions[bot] Mar 20, 2024
823c2a5
Update dependaboat.yml
ravirajmcet Mar 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 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: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
time: "Thursday at 00:47"
31 changes: 31 additions & 0 deletions .github/workflows/dependaboat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
#on: pull_request

# Set the access for individual scopes, or use permissions: write-all
permissions:
contents: write
pull-requests: write

jobs:
dependabot:
runs-on: ubuntu-latest
steps:
- name: Checkout sourccode
uses: actions/checkout@v2

- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<artifactItem>
<groupId>com.github.jsimone</groupId>
<artifactId>webapp-runner</artifactId>
<version>8.0.30.2</version>
<version>8.0.28.0</version>
<destFileName>webapp-runner.jar</destFileName>
</artifactItem>
</artifactItems>
Expand All @@ -35,15 +35,15 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.10.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.1</version>
<version>3.1.0</version>
<configuration>
<warSourceDirectory>WebContent</warSourceDirectory>
</configuration>
Expand All @@ -55,14 +55,14 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.7</version>
<version>42.3.9</version>
</dependency>


<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<version>8.0.22</version>
</dependency>


Expand All @@ -72,4 +72,4 @@
<version>3.1.0</version>
</dependency>
</dependencies>
</project>
</project>