Skip to content

Commit

Permalink
#525 likely done
Browse files Browse the repository at this point in the history
  • Loading branch information
vaadin-miki committed Oct 4, 2024
1 parent e8de839 commit 56d7ff5
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codequality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ name: Code Quality

on:
pull_request:
branches: [master, development]
branches: [ master, development ]
push:
branches: [master, development, java-8]
branches: [ master, development, java-8 ]

jobs:
code_scan:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploydemo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: Deploy demo to demo server

on:
release:
types: [created]
types: [ created ]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/makerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: Make Release

on:
push:
branches: [master]
branches: [ master ]

jobs:
create-release:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- id: variables
run: |
echo "::set-output name=version::`head -1 superfields/release-notes.md | cut -d' ' -f2`"
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: 17
distribution: temurin
- name: Build with Maven
run: mvn -B package --file pom.xml
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Build with Maven
run: mvn -B package --file pom.xml
6 changes: 3 additions & 3 deletions .github/workflows/publish-central.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Publish to Central
on:
release:
types: [published]
types: [ published ]

jobs:
publish_central:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Publish to GitHub

on:
release:
types: [created]
types: [ created ]

jobs:
publish_github:
Expand All @@ -14,9 +14,9 @@ jobs:
timeout-minutes: 30

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-java8-central.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Publish to Central
on:
push:
branches: [java-8]
branches: [ java-8 ]

jobs:
publish_central:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 1.8
distribution: oracle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releasenotes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Prepare release notes when milestone closes

on:
milestone:
types: [closed]
types: [ closed ]

jobs:
update-release-notes:
Expand All @@ -20,7 +20,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
source: development
target: notes-${{ steps.version.outputs.version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: notes-${{ steps.version.outputs.version }}
- name: Create milestone notes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
Expand Down

0 comments on commit 56d7ff5

Please sign in to comment.