Skip to content

Commit

Permalink
Update actions (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Mar 18, 2024
1 parent 38e8e5a commit 660a9f6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: '17'
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: '17'
Expand All @@ -79,7 +79,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: ${{ matrix.java }}
Expand All @@ -105,7 +105,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: '17'
Expand All @@ -128,7 +128,7 @@ jobs:
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6.0.1
uses: peter-evans/create-pull-request@v6.0.2
with:
body: |-
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin.
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: '17'
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- name: Install libuv
run: sudo apt-get update && sudo apt-get install -y libuv1-dev
- name: Setup Scala
uses: actions/setup-java@v4.1.0
uses: actions/setup-java@v4.2.1
with:
distribution: corretto
java-version: '17'
Expand Down
4 changes: 2 additions & 2 deletions zio-sbt-ci/src/main/scala/zio/sbt/V.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ package zio.sbt
object V {
def apply(packageName: String): String =
Map(
"peter-evans/create-pull-request" -> "v6.0.1",
"peter-evans/create-pull-request" -> "v6.0.2",
"zio/generate-github-app-token" -> "v1.0.0",
"pierotofy/set-swap-space" -> "master",
"actions/checkout" -> "v4.1.1",
"coursier/cache-action" -> "v6.4.5",
"actions/setup-java" -> "v4.1.0",
"actions/setup-java" -> "v4.2.1",
"actions/setup-node" -> "v4"
).map { case (k, v) => (k, s"$k@$v") }.apply(packageName)
}

0 comments on commit 660a9f6

Please sign in to comment.