Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency coursier/cache-action to v6.4.4 #325

Merged
merged 3 commits into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Check all code compiles
run: sbt +Test/compile
- name: Check artifacts build process
Expand All @@ -59,7 +59,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Check if the site workflow is up to date
run: sbt ciCheckGithubWorkflow
- name: Lint
Expand All @@ -85,7 +85,7 @@ jobs:
java-version: ${{ matrix.java }}
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Git Checkout
uses: actions/checkout@v4.1.1
with:
Expand All @@ -111,7 +111,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Generate Readme
run: sbt docs/generateReadme
- name: Commit Changes
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Release
run: sbt ci-release
env:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
java-version: '17'
check-latest: true
- name: Cache Dependencies
uses: coursier/cache-action@v6
uses: coursier/cache-action@v6.4.4
- name: Setup NodeJs
uses: actions/setup-node@v4
with:
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 @@ -7,8 +7,8 @@ object V {
"zio/generate-github-app-token" -> "v1.0.0",
"pierotofy/set-swap-space" -> "master",
"actions/checkout" -> "v4.1.1",
"coursier/cache-action" -> "v6.4.4",
"actions/setup-java" -> "v4.0.0",
"coursier/cache-action" -> "v6",
"actions/setup-node" -> "v4"
).map { case (k, v) => (k, s"$k@$v") }.apply(packageName)
}
Loading