Skip to content

Commit

Permalink
fixed broken link checker (#19)
Browse files Browse the repository at this point in the history
* fixed broken link checker
  • Loading branch information
jakobbraun authored Oct 11, 2021
1 parent 209ad46 commit 65b1943
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 15 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/broken_links_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: lychee Link Checker
id: lc
uses: lycheeverse/[email protected]
- name: Fail if there were link errors
run: exit ${{ steps.lc.outputs.exit_code }}
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'
use-verbose-mode: 'yes'
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,9 @@ jobs:
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.jar
asset_path: target/*.jar
- name: Upload error-code-report
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/error_code_report.json
2 changes: 1 addition & 1 deletion dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
[54]: http://maven.apache.org/plugins/maven-dependency-plugin/
[22]: https://maven.apache.org/plugins/maven-compiler-plugin/
[38]: http://maven.apache.org/plugins/maven-gpg-plugin/
[2]: https://maven.apache.org/ref/3.8.2/maven-plugin-api/
[16]: http://junit.org
[21]: https://www.eclipse.org/legal/epl-2.0/
[17]: http://www.eclipse.org/legal/epl-v10.html
Expand All @@ -87,7 +88,6 @@
[12]: http://www.slf4j.org
[46]: http://maven.apache.org/plugins/maven-deploy-plugin/
[64]: http://maven.apache.org/plugins/maven-site-plugin/
[2]: https://maven.apache.org/ref/3.8.1/maven-plugin-api/
[58]: http://maven.apache.org/plugins/maven-resources-plugin/
[0]: https://maven.apache.org/plugin-tools/maven-plugin-annotations
[36]: https://maven.apache.org/plugins/maven-javadoc-plugin/
Expand Down
1 change: 1 addition & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* [0.4.1](changes_0.4.1.md)
* [0.4.0](changes_0.4.0.md)
* [0.3.2](changes_0.3.2.md)
* [0.3.1](changes_0.3.1.md)
Expand Down
18 changes: 18 additions & 0 deletions doc/changes/changes_0.4.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Artifact reference checker and unifier 0.4.1, released 2021-??-??

Code name:

## Dependency Updates

### Compile Dependency Updates

* Updated `org.apache.maven:maven-plugin-api:3.8.1` to `3.8.2`

### Test Dependency Updates

* Updated `org.slf4j:slf4j-jdk14:1.7.31` to `1.7.32`

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:0.5.0` to `0.5.1`
* Updated `com.exasol:project-keeper-maven-plugin:0.9.0` to `0.10.0`
15 changes: 7 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.exasol</groupId>
<artifactId>artifact-reference-checker-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>0.4.0</version>
<version>0.4.1</version>
<name>Artifact reference checker and unifier</name>
<description>This Maven-Plugin helps you not to forget to change references to your artifacts. For example, if you
reference your binary in the README.md file, this plugin will break the build, if you forgot to update the
Expand Down Expand Up @@ -43,9 +43,8 @@
</developerConnection>
<url>https://github.com/exasol/artifact-reference-checker-maven-plugin/tree/master</url>
</scm>

<properties>
<maven.version>3.8.1</maven.version>
<maven.version>3.8.2</maven.version>
<junit.version>5.7.2</junit.version>
<java.version>11</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -96,7 +95,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.31</version>
<version>1.7.32</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -271,7 +270,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
<executions>
<execution>
<goals>
Expand All @@ -293,7 +292,7 @@
<version>3.0.0-M3</version>
<configuration>
<!-- Set the highest log level for coverage testing, so that we
have a chance to reach branches in the logging lambdas too. -->
have a chance to reach branches in the logging lambdas too. -->
<argLine>-Djava.util.logging.config.file=src/test/resources/logging.properties ${argLine}</argLine>
<excludes>
<exclude>**IT.java</exclude>
Expand Down Expand Up @@ -376,7 +375,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>error-code-crawler-maven-plugin</artifactId>
<version>0.5.0</version>
<version>0.5.1</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -420,4 +419,4 @@
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 65b1943

Please sign in to comment.