Skip to content

Commit

Permalink
Merge branch 'main' into renovate/ubuntu-22.x
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii authored Sep 10, 2023
2 parents cfdf455 + 9ca09c0 commit f10b1c4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
continue-on-error: true
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand All @@ -47,7 +47,7 @@ jobs:
continue-on-error: false
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand All @@ -99,7 +99,7 @@ jobs:
if: ${{ github.event_name == 'push' }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: notify the main repo about the new release of docs package
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ test:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand Down Expand Up @@ -228,7 +228,7 @@ test:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ test:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand Down Expand Up @@ -227,7 +227,7 @@ test:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion zio-sbt-ci/src/main/scala/zio/sbt/V.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ object V {
"peter-evans/create-pull-request" -> "v5.0.0",
"zio/generate-github-app-token" -> "v1.0.0",
"pierotofy/set-swap-space" -> "master",
"actions/checkout" -> "v3.6.0",
"actions/checkout" -> "v4.0.0",
"actions/setup-java" -> "v3.12.0",
"coursier/cache-action" -> "v6",
"actions/setup-node" -> "v3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# These version must be different than the versions in V.scala to verify that we are reading from the ci.yml file.
scala: ['2.12.18', '2.13.11', '3.3.0' ]
steps:
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.0.0
- uses: actions/setup-java@v3.12.0
with:
distribution: temurin
Expand Down

0 comments on commit f10b1c4

Please sign in to comment.