Skip to content

Commit

Permalink
Upped actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mihxil committed Aug 21, 2024
1 parent 31e048b commit dc1d506
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: oleksiyrudenko/gha-git-credentials@v2.1.1
- uses: actions/checkout@v4
- uses: oleksiyrudenko/gha-git-credentials@v2.1.2
with:
global: true
name: 'github'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3.6.0
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand All @@ -38,10 +38,10 @@ jobs:
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_SECRET_KEY_PASSPHRASE: ${{ secrets.GPG_SECRET_KEY_PASSPHRASE }}
- 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/composite@v2.3.0
uses: EnricoMi/publish-unit-test-result-action/composite@v2.17.0
with:
junit_files: "**/target/surefire-reports/*.xml"
if: always()
4 changes: 2 additions & 2 deletions .github/workflows/pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest
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 @@ -19,7 +19,7 @@ jobs:
server-password: SONATYPE_PASSWORD
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
gpg-passphrase: GPG_SECRET_KEY_PASSPHRASE
- uses: oleksiyrudenko/gha-git-credentials@v2.1.1
- uses: oleksiyrudenko/gha-git-credentials@v2.1.2
with:
global: true
name: 'github'
Expand Down

0 comments on commit dc1d506

Please sign in to comment.