Skip to content

Commit

Permalink
Merge pull request #181 from smallrye/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/checkout-4

build(deps): bump actions/checkout from 2 to 4
  • Loading branch information
jponge authored Mar 14, 2024
2 parents 2d8e16b + 4661a40 commit 4d1b513
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
]
name: Build with Java ${{ matrix.java.version }} (OpenJDK)
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Set up JDK ${{matrix.java.version}}
with:
Expand All @@ -34,7 +34,7 @@ jobs:
needs: build-main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Set up JDK 11
with:
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
name: Compatibility Check
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Set up JDK 11
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
]
name: Build with Java ${{ matrix.java.version }} (OpenJDK)
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Set up JDK ${{matrix.java.version}}
with:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
name: Compatibility Check
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
name: Set up JDK 11
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
github-token: ${{secrets.GITHUB_TOKEN}}
metadata-file-path: '.github/project.yml'

- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
token: ${{secrets.RELEASE_TOKEN}}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
publish-website:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout code
with:
fetch-depth: 0 # fetch all commits and branches for mike to work properly
Expand Down

0 comments on commit 4d1b513

Please sign in to comment.