Skip to content

Commit a950f45

Browse files
authored
Merge branch 'master' into update/scala-compiler-2.13.15
2 parents 28e39d7 + 982b81f commit a950f45

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 15
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4.0.0
22+
- uses: actions/checkout@v4.2.0
2323
- name: Cache sbt
2424
uses: actions/cache@v4
2525
with:
@@ -29,7 +29,7 @@ jobs:
2929
key: ${{ runner.os }}-${{matrix.scala}}-${{matrix.module}}-${{ hashFiles('**/build.sbt') }}
3030

3131
- name: Setup Java
32-
uses: actions/setup-java@v4.2.2
32+
uses: actions/setup-java@v4.3.0
3333
with:
3434
distribution: temurin
3535
java-version: '17'
@@ -77,7 +77,7 @@ jobs:
7777
name: Build ${{matrix.scala_short_dot}} - ${{matrix.module}}
7878

7979
steps:
80-
- uses: actions/checkout@v4.0.0
80+
- uses: actions/checkout@v4.2.0
8181
- name: Cache sbt
8282
uses: actions/cache@v4
8383
with:
@@ -87,7 +87,7 @@ jobs:
8787
key: ${{ runner.os }}-${{matrix.scala}}-${{matrix.module}}-${{ hashFiles('**/build.sbt') }}
8888

8989
- name: Setup Java
90-
uses: actions/setup-java@v4.2.2
90+
uses: actions/setup-java@v4.3.0
9191
with:
9292
distribution: temurin
9393
java-version: '17'
@@ -108,9 +108,9 @@ jobs:
108108
CI_RELEASE: publishSigned # By default, sbt-ci-release uses the `+publishSigned` which is publishing for all the Scala versions configured, which is not what we want
109109
CI_SNAPSHOT_RELEASE: publish # By default, sbt-ci-release uses the `+publish` which is publishing for all the Scala versions configured, which is not what we want
110110
steps:
111-
- uses: actions/checkout@v4.0.0
111+
- uses: actions/checkout@v4.2.0
112112
- name: Setup Java
113-
uses: actions/setup-java@v4.2.2
113+
uses: actions/setup-java@v4.3.0
114114
with:
115115
distribution: temurin
116116
java-version: '11'

.github/workflows/site.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
if: ${{ github.event_name == 'pull_request' }}
1919
steps:
2020
- name: Git Checkout
21-
uses: actions/checkout@v3.3.0
21+
uses: actions/checkout@v4.2.0
2222
with:
2323
fetch-depth: '0'
2424
- name: Setup Scala
25-
uses: actions/setup-java@v3.9.0
25+
uses: actions/setup-java@v4.3.0
2626
with:
2727
distribution: temurin
2828
java-version: 17
@@ -39,11 +39,11 @@ jobs:
3939
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
4040
steps:
4141
- name: Git Checkout
42-
uses: actions/checkout@v3.3.0
42+
uses: actions/checkout@v4.2.0
4343
with:
4444
fetch-depth: '0'
4545
- name: Setup Scala
46-
uses: actions/setup-java@v3.9.0
46+
uses: actions/setup-java@v4.3.0
4747
with:
4848
distribution: temurin
4949
java-version: 17
@@ -63,12 +63,12 @@ jobs:
6363
if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }}
6464
steps:
6565
- name: Git Checkout
66-
uses: actions/checkout@v3.3.0
66+
uses: actions/checkout@v4.2.0
6767
with:
6868
ref: ${{ github.head_ref }}
6969
fetch-depth: '0'
7070
- name: Setup Scala
71-
uses: actions/setup-java@v3.9.0
71+
uses: actions/setup-java@v4.3.0
7272
with:
7373
distribution: temurin
7474
java-version: 17
@@ -82,7 +82,7 @@ jobs:
8282
git add README.md
8383
git commit -m "Update README.md" || echo "No changes to commit"
8484
- name: Create Pull Request
85-
uses: peter-evans/create-pull-request@v4.2.3
85+
uses: peter-evans/create-pull-request@v7.0.5
8686
with:
8787
body: |-
8888
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin.

0 commit comments

Comments
 (0)