Skip to content

Commit

Permalink
Merge pull request #505 from scalameta/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/checkout-3

Bump actions/checkout from 2 to 3
  • Loading branch information
valencik authored Apr 9, 2022
2 parents 0ed1b3a + a1f3ab2 commit f693be6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
java: [11, 8]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
with:
java-version: "adopt@1.${{ matrix.java }}"
Expand All @@ -27,7 +27,7 @@ jobs:
fail-fast: false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: sbt +testsJS/test
env:
Expand All @@ -38,7 +38,7 @@ jobs:
native:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: sbt +testsNative/test
env:
Expand All @@ -49,7 +49,7 @@ jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: sbt +testsJVM/test
shell: bash
Expand All @@ -61,20 +61,20 @@ jobs:
mima:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: sbt mimaReportBinaryIssues
scalafmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: ./bin/scalafmt --check
docs:
name: Scalafix and Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- run: sbt scalafixCheckAll
- run: sbt docs/docusaurusCreateSite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: olafurpg/setup-scala@v13
- uses: olafurpg/setup-gpg@v3
- run: git fetch --unshallow
Expand Down

0 comments on commit f693be6

Please sign in to comment.