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

Bump the alldependencies group across 1 directory with 4 updates #309

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ jobs:
name: Build, Test, and Analyze
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
uses: actions/setup-java@v4.4.0
uses: actions/setup-java@v4.6.0
with:
java-version: 17
distribution: 'temurin'
- name: Cache SonarCloud packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.2.0
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
Expand Down Expand Up @@ -53,14 +53,14 @@ jobs:
- name: Bundle tarballs
run: ./gradlew bundle
- name: Upload WAR files
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: warfile
path: ./**/build/libs/*.war
retention-days: 1
if-no-files-found: error
- name: Upload Tarballs
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: opendcs-rest-api-artifacts
path: ./**/build/distributions/*.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
name: Build on Java ${{ matrix.Java }}
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4.4.0
uses: actions/setup-java@v4.6.0
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/owasp_zap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
- name: Set up JDK 17
uses: actions/setup-java@v4.4.0
uses: actions/setup-java@v4.6.0
with:
java-version: 17
distribution: 'temurin'
- name: Cache Gradle packages
uses: actions/cache@v4.1.1
uses: actions/cache@v4.2.0
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
Expand All @@ -45,7 +45,7 @@ jobs:
vars: |
empty: empty
- name: Upload Full HTML Report
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.5.0
with:
name: zap_report.html
path: ./opendcs-rest-api-jetty/build/test-results/owasp/zap_report.html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
name: Attach Artifacts
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].1
- uses: actions/[email protected].2
- name: Set up JDK 17
uses: actions/setup-java@v4.4.0
uses: actions/setup-java@v4.6.0
with:
java-version: 17
distribution: 'temurin'
Expand Down
Loading