Skip to content

Commit

Permalink
Upgrade GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
kwart committed May 15, 2023
1 parent d00f64a commit 84e312a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@ updates:
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "thursday"
time: "02:00"
5 changes: 3 additions & 2 deletions .github/workflows/do-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Java and credentials
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'adopt'
Expand All @@ -31,6 +31,7 @@ jobs:
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
cache: 'maven'

- name: Do the Deployment and related stuff
run: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pr-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@ jobs:
if: github.repository_owner == 'hazelcast'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Apache Maven Central
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'adopt'
cache: 'maven'

- name: Build
run: |
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/push-snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
if: github.repository_owner == 'hazelcast'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Apache Maven Central
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'adopt'
Expand All @@ -25,6 +25,7 @@ jobs:
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }}
gpg-passphrase: MAVEN_GPG_PASSPHRASE
cache: 'maven'

- name: Publish to Apache Maven Central
run: |
Expand Down

0 comments on commit 84e312a

Please sign in to comment.