Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Apr 19, 2024
2 parents 3a3a273 + f39240e commit 879f1c8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
cache: 'gradle'

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
uses: gradle/wrapper-validation-action@v2
- name: Build with Gradle
run: ./gradlew build --no-daemon

Expand All @@ -33,16 +33,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
cache: 'gradle'

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
uses: gradle/wrapper-validation-action@v2

- name: Publish with Gradle
env:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -51,7 +51,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -65,4 +65,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v2
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java-library'
id 'signing'
id 'maven-publish'
id 'io.github.gradle-nexus.publish-plugin' version "1.3.0"
id 'io.github.gradle-nexus.publish-plugin' version "2.0.0"
id 'org.cyclonedx.bom' version "1.8.2"
id 'org.sonarqube' version "4.0.0.2929"
id 'io.github.sgtsilvio.gradle.javadoc-links' version "0.8.0"
Expand All @@ -27,7 +27,7 @@ repositories {

ext {
poiVersion = '5.2.5'
slf4jVersion = '2.0.11'
slf4jVersion = '2.0.13'
}

dependencies {
Expand All @@ -36,12 +36,12 @@ dependencies {
implementation "org.apache.poi:poi-ooxml:$poiVersion"
implementation "org.apache.poi:poi:$poiVersion"
implementation 'org.apache.xmlbeans:xmlbeans:5.2.0'
implementation 'org.apache.commons:commons-text:1.11.0'
implementation 'org.apache.commons:commons-text:1.12.0'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.nanohttpd:nanohttpd:2.3.1'
testImplementation 'commons-io:commons-io:2.15.1'
testImplementation 'commons-io:commons-io:2.16.1'
testRuntimeOnly "org.slf4j:slf4j-simple:$slf4jVersion"
testRuntimeOnly 'org.apache.logging.log4j:log4j-to-slf4j:2.22.1'
testRuntimeOnly 'org.apache.logging.log4j:log4j-to-slf4j:2.23.1'
}

java {
Expand Down

0 comments on commit 879f1c8

Please sign in to comment.