Skip to content

Commit

Permalink
Upped actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Aug 30, 2024
1 parent fe55d8c commit 7e0be82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
MAVEN_OPTS: '-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: oleksiyrudenko/[email protected]
with:
global: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
env:
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand All @@ -31,10 +31,10 @@ jobs:
GPG_SECRET_KEY_PASSPHRASE: ${{ secrets.GPG_SECRET_KEY_PASSPHRASE }}
#continue-on-error: true
- name: Publish to codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
continue-on-error: true
- name: Publish Test Report
uses: EnricoMi/publish-unit-test-result-action@v2.7.0
uses: EnricoMi/publish-unit-test-result-action@v2.17.0
if: always()
with:
junit_files: "**/target/surefire-reports/*.xml"
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
if: startsWith(github.ref, 'refs/heads/REL-')
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand All @@ -22,7 +22,7 @@ jobs:
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
gpg-passphrase: GPG_SECRET_KEY_PASSPHRASE
cache: maven
- uses: oleksiyrudenko/[email protected].1
- uses: oleksiyrudenko/[email protected].2
with:
global: true
name: 'github $GITHUB_ACTOR'
Expand Down

0 comments on commit 7e0be82

Please sign in to comment.