Skip to content

Commit

Permalink
[GHA] Update all versions and use major only (which is always latest) (
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz authored Jan 26, 2024
1 parent f411622 commit c81ca9f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: adopt

- name: Generate code coverage
run: mvn --batch-mode test

- uses: codecov/codecov-action@v3.1.0
- uses: codecov/codecov-action@v3
6 changes: 3 additions & 3 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: adopt

- name: Generate demo report
run: mvn --batch-mode test

- uses: peaceiris/actions-gh-pages@v3.7.3
- uses: peaceiris/actions-gh-pages@v3
with:
external_repository: damianszczepanik/damianszczepanik.github.io
personal_token: ${{ secrets.GH_PAGES_UPLOAD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod

- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
java-version: 11
distribution: adopt
Expand Down

0 comments on commit c81ca9f

Please sign in to comment.