Skip to content

Commit 486b0b4

Browse files
committed
Merge branch 'main' into issue-95
2 parents 759a857 + 51aea1b commit 486b0b4

21 files changed

Lines changed: 899 additions & 212 deletions

.github/dependabot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ updates:
33
- package-ecosystem: maven
44
directory: "/"
55
schedule:
6-
interval: daily
6+
interval: "quarterly"
7+
day: monday
78
time: "04:00"
89
open-pull-requests-limit: 99
10+
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "quarterly"
15+
day: monday
16+
time: "04:00"
17+
open-pull-requests-limit: 99

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 44 deletions
This file was deleted.

.github/workflows/maven.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
9+
name: Java CI with Maven
10+
11+
on:
12+
push:
13+
branches: ["main"]
14+
pull_request:
15+
branches: ["main"]
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
21+
permissions:
22+
# https://github.com/advanced-security/maven-dependency-submission-action?tab=readme-ov-file#pre-requisites
23+
contents: write
24+
25+
steps:
26+
- uses: actions/checkout@v6
27+
- name: Set up JDK 21
28+
uses: actions/setup-java@v5
29+
with:
30+
java-version: "21"
31+
distribution: "temurin"
32+
cache: maven
33+
- name: Build with Maven
34+
run: ./mvnw -B package --file pom.xml
35+
36+
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
37+
- name: Update dependency graph
38+
uses: advanced-security/maven-dependency-submission-action@v5
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
wrapperVersion=3.3.4
2+
distributionType=only-script
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Java lib for monitoring directories or individual files based on the `java.nio.f
44

55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/ch.vorburger/fswatch/badge.svg)](https://maven-badges.herokuapp.com/maven-central/ch.vorburger/fswatch)
66
[![Javadocs](http://www.javadoc.io/badge/ch.vorburger/fswatch.svg)](http://www.javadoc.io/doc/ch.vorburger/fswatch)
7-
[![Build Status](https://app.travis-ci.com/vorburger/ch.vorburger.fswatch.svg?branch=master)](https://app.travis-ci.com/vorburger/ch.vorburger.fswatch)
7+
[![Build Status](https://app.travis-ci.com/vorburger/ch.vorburger.fswatch.svg?branch=main)](https://app.travis-ci.com/vorburger/ch.vorburger.fswatch)
88

99
## Usage
1010

SECURITY.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
The following versions of this project are currently supported with security updates:
6+
7+
| Version | Supported |
8+
|---------|--------------------|
9+
| `main` | :white_check_mark: |
10+
| 1.3.x | :white_check_mark: |
11+
| Older | :x: |
12+
13+
## Reporting a Vulnerability
14+
15+
Email https://github.com/vorburger. (You can find the email address in the `git log` after you `git clone` this repo.)
16+
17+
Or contact https://tidelift.com/security who will get in touch with me.

0 commit comments

Comments
 (0)