Skip to content

Commit

Permalink
Bumped some GitHub actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb committed May 30, 2024
1 parent b641e71 commit 17a4d25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-deploy-to-sonatype.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

# Set up the JDK and Maven settings.xml
- name: Set up JDK ${{ env.jdk-version }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.jdk-version }}
Expand All @@ -26,7 +26,7 @@ jobs:

# Checkout this repository
- name: Checkout this repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Build all modules and deploy their SNAPSHOT artifacts to sonatype repository
- name: Deploy this repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-javadoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:

# Set up the JDK and Maven settings.xml
- name: Set up JDK ${{ env.jdk-version }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: ${{ env.jdk-version }}

# Checkout this repository
- name: Checkout this repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: ${{ env.repo-dir }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/discover-vulnerabilities.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java

- name: Set up JDK 19
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 19
Expand Down

0 comments on commit 17a4d25

Please sign in to comment.