Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ jobs:
sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0

- name: Install NodeJS
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 20

- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- uses: actions/cache@v5
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/binary-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ jobs:
sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
ref: ${{ inputs.ref }}

- name: Coursier Cache
id: coursier-cache
uses: coursier/cache-action@v6
uses: coursier/cache-action@v8
with:
ignoreJob: ${{ inputs.ignore-job-coursier-cache }}
ignoreMatrix: true
extraKey: ${{ inputs.extra-coursier-cache-key }}

- name: Install Adoptium Temurin OpenJDK
uses: coursier/setup-action@v1
uses: coursier/setup-action@v3
with:
jvm: adoptium:${{ inputs.java }}
jvm-index: ${{ inputs.java-index }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
Expand All @@ -121,14 +121,14 @@ jobs:

- name: Coursier Cache
id: coursier-cache
uses: coursier/cache-action@v6
uses: coursier/cache-action@v8
with:
ignoreJob: ${{ inputs.ignore-job-coursier-cache }}
ignoreMatrix: ${{ inputs.ignore-matrix-coursier-cache }}
extraKey: ${{ inputs.extra-coursier-cache-key }}

- name: Gradle Cache
uses: burrunan/gradle-cache-action@v2
uses: burrunan/gradle-cache-action@v3
with:
build-root-directory: ${{ inputs.gradle-build-root }}
# Disable caching of ~/.gradle/caches/build-cache-*
Expand All @@ -137,14 +137,14 @@ jobs:
save-maven-dependencies-cache: false

- name: Custom Cache
uses: actions/cache@v4
uses: actions/cache@v5
if: ${{ inputs.cache-key != '' && inputs.cache-path != '' }}
with:
key: ${{ format(inputs.cache-key, matrix.java) }}
path: ${{ inputs.cache-path }}

- name: Install Adoptium Temurin OpenJDK
uses: coursier/setup-action@v1
uses: coursier/setup-action@v3
with:
jvm: adoptium:${{ matrix.java }}
jvm-index: ${{ inputs.java-index }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
ref: ${{ inputs.ref }}

- name: Gradle Wrapper Validation
uses: gradle/actions/wrapper-validation@v4
uses: gradle/actions/wrapper-validation@v6
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,22 +43,22 @@ jobs:
sudo echo "127.0.0.1 repo.scala-sbt.org" | sudo tee -a /etc/hosts
sudo echo "127.0.0.1 repo.typesafe.com" | sudo tee -a /etc/hosts
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
# we don't know what commit the last tag was it's safer to get entire repo so previousStableVersion resolves
fetch-depth: 0
ref: ${{ inputs.ref }}

- name: Coursier Cache
id: coursier-cache
uses: coursier/cache-action@v6
uses: coursier/cache-action@v8
with:
ignoreJob: ${{ inputs.ignore-job-coursier-cache }}
ignoreMatrix: true
extraKey: ${{ inputs.extra-coursier-cache-key }}

- name: Gradle Cache
uses: burrunan/gradle-cache-action@v2
uses: burrunan/gradle-cache-action@v3
with:
build-root-directory: ${{ inputs.gradle-build-root }}
# Disable caching of ~/.gradle/caches/build-cache-*
Expand All @@ -67,7 +67,7 @@ jobs:
save-maven-dependencies-cache: false

- name: Install Adoptium Temurin OpenJDK
uses: coursier/setup-action@v1
uses: coursier/setup-action@v3
with:
jvm: adoptium:${{ inputs.java }}
jvm-index: ${{ inputs.java-index }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Run GitHub File Sync
uses: BetaHuhn/repo-file-sync-action@v1
with:
Expand Down