Skip to content

Commit

Permalink
Nail the workflow version to v1
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Apr 11, 2022
1 parent adf8650 commit 679d4d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ concurrency:
jobs:
check-code-style:
name: Code Style
uses: playframework/.github/.github/workflows/sbt.yml@main
uses: playframework/.github/.github/workflows/sbt.yml@v1
with:
cmd: sbt validateCode

check-docs:
name: Docs
uses: playframework/.github/.github/workflows/sbt.yml@main
uses: playframework/.github/.github/workflows/sbt.yml@v1
with:
cmd: sbt docs/webStage

Expand All @@ -26,14 +26,14 @@ jobs:
needs: # Waiting more lightweight checks
- "check-code-style"
- "check-docs"
uses: playframework/.github/.github/workflows/sbt.yml@main
uses: playframework/.github/.github/workflows/sbt.yml@v1
with:
cmd: sbt +test

scripted-tests:
name: Scripted tests
needs: # Waiting more lightweight checks
- "tests"
uses: playframework/.github/.github/workflows/sbt.yml@main
uses: playframework/.github/.github/workflows/sbt.yml@v1
with:
cmd: sbt +publishLocal plugin/scripted
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
publish-artifacts:
name: Publish / Artifacts
uses: playframework/.github/.github/workflows/publish.yml@main
uses: playframework/.github/.github/workflows/publish.yml@v1
secrets:
username: ${{ secrets.SONATYPE_USERNAME }}
password: ${{ secrets.SONATYPE_PASSWORD }}
Expand Down

0 comments on commit 679d4d5

Please sign in to comment.