Skip to content

Commit

Permalink
Update common files
Browse files Browse the repository at this point in the history
  • Loading branch information
micronaut-build committed Dec 1, 2020
1 parent 9c82a0a commit 9752e7e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 16 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dependency-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Check Dependencies
run: ./gradlew useLatestVersions
- name: Create Pull Request
uses: peter-evans/create-pull-request@v2
uses: peter-evans/create-pull-request@v3.5.1
with:
token: ${{ secrets.GH_TOKEN }}
committer: micronaut-build <${{ secrets.MICRONAUT_BUILD_EMAIL }}>
Expand All @@ -36,5 +36,4 @@ jobs:
title: 'Dependency upgrades'
body: Upgrades dependencies to their latest versions
labels: "type: dependency-upgrade"
base: ${{ env.githubBranch }}
branch: dependency-updates
4 changes: 2 additions & 2 deletions .github/workflows/graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
graalvm: ['20.2.0.java8', '20.2.0.java11']
graalvm: ['20.3.0.java8', '20.3.0.java11']
steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]
Expand All @@ -24,7 +24,7 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
- name: Setup GraalVM CE
uses: DeLaGuardo/setup-graalvm@2.0
uses: DeLaGuardo/setup-graalvm@3.0
with:
graalvm-version: ${{ matrix.graalvm }}
- name: Install Native Image
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,5 @@ jobs:
env:
TARGET_REPOSITORY: ${{ steps.docs_target.outputs.value }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
BASE_BRANCH: ${{ env.githubBranch }}
BRANCH: gh-pages
FOLDER: build/docs
16 changes: 7 additions & 9 deletions .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,12 @@
# and edit them there. Note that it will be sync'ed to all the Micronaut repos
name: Changelog
on:
pull_request:
types: closed
branches:
- master
- '[1-9]+.[0-9]+.x'
issues:
types: [closed,reopened]
push:
branches:
- master
- '[1-9]+.[0-9]+.x'
paths:
- ".github/workflows/release-notes.yml"
jobs:
release_notes:
runs-on: ubuntu-latest
Expand All @@ -44,12 +37,17 @@ jobs:
id: release_notes
with:
token: ${{ secrets.GH_TOKEN }}
branch: ${{ env.githubBranch }}
- name: Determine current branch
id: branch
run: |
branch=$(git rev-parse --abbrev-ref HEAD)
echo "Current branch: ${branch}"
echo ::set-output name=branch::${branch}
- uses: ncipollo/release-action@v1
if: steps.check_release_drafter.outputs.has_release_drafter == 'false' && steps.release_notes.outputs.generated_changelog == 'true'
with:
allowUpdates: true
commit: ${{ env.githubBranch }}
commit: ${{ steps.branch.outputs.branch }}
draft: true
name: ${{ env.title }} ${{ steps.release_notes.outputs.next_version }}
tag: v${{ steps.release_notes.outputs.next_version }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
env:
BETA: ${{ contains(steps.release_version.outputs.release_version, 'M') || contains(steps.release_version.outputs.release_version, 'RC') }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
BASE_BRANCH: ${{ env.githubBranch }}
BRANCH: gh-pages
FOLDER: build/docs
VERSION: ${{ steps.release_version.outputs.release_version }}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 9752e7e

Please sign in to comment.