Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.0.x] Bump playframework/.github from 3 to 4 #809

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
# Run Gradle Wrapper Validation to verify the wrapper's checksum
gradle-validation:
name: Gradle Wrapper
uses: playframework/.github/.github/workflows/gradle-wrapper-validation.yml@v3
uses: playframework/.github/.github/workflows/gradle-wrapper-validation.yml@v4

check-code-style:
name: Code Style
needs:
- "gradle-validation"
uses: playframework/.github/.github/workflows/cmd.yml@v3
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
gradle-build-root: gradle-twirl
cmd: |
Expand All @@ -32,11 +32,11 @@ jobs:

check-binary-compatibility:
name: Binary Compatibility
uses: playframework/.github/.github/workflows/binary-check.yml@v3
uses: playframework/.github/.github/workflows/binary-check.yml@v4

check-docs:
name: Docs
uses: playframework/.github/.github/workflows/cmd.yml@v3
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
cmd: |
cd docs
Expand All @@ -48,7 +48,7 @@ jobs:
- "check-code-style"
- "check-binary-compatibility"
- "check-docs"
uses: playframework/.github/.github/workflows/cmd.yml@v3
uses: playframework/.github/.github/workflows/cmd.yml@v4
with:
java: 21, 17, 11
scala: 2.12.x, 2.13.x, 3.x
Expand All @@ -60,4 +60,4 @@ jobs:
if: github.event_name == 'pull_request'
needs: # Should be last
- "tests"
uses: playframework/.github/.github/workflows/rtm.yml@v3
uses: playframework/.github/.github/workflows/rtm.yml@v4
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
publish-snapshot-artifacts:
name: Publish / Artifacts (Snapshot)
if: github.ref_type == 'branch' # Snapshots
uses: playframework/.github/.github/workflows/publish.yml@v3
uses: playframework/.github/.github/workflows/publish.yml@v4
with:
gradle-build-root: gradle-twirl
cmd: |
Expand All @@ -22,13 +22,13 @@ jobs:
publish-release:
name: Publish / Artifacts (Stable Release)
if: github.ref_type == 'tag' # Releases
uses: playframework/.github/.github/workflows/publish.yml@v3
uses: playframework/.github/.github/workflows/publish.yml@v4
secrets: inherit

publish-release-gradle:
name: Publish / Artifacts (Stable Gradle Plugin)
if: github.ref_type == 'tag' # Releases
uses: playframework/.github/.github/workflows/publish.yml@v3
uses: playframework/.github/.github/workflows/publish.yml@v4
with:
gradle-build-root: gradle-twirl
cmd: |
Expand Down
Loading