Skip to content

Commit f95cdf3

Browse files
committed
GH-535: [Dev] Use compose.yaml not docker-compose.yml
Fixes GH-535. Because Docker Compose recommends `compose.yaml`: https://docs.docker.com/compose/intro/compose-application-model/#the-compose-file > The default path for a Compose file is compose.yaml (preferred) or > compose.yml that is placed in the working directory. Compose also > supports docker-compose.yaml and docker-compose.yml for backwards > compatibility of earlier versions. If both files exist, Compose > prefers the canonical compose.yaml.
1 parent 2e4283a commit f95cdf3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
6767
with:
6868
path: .docker
69-
key: maven-${{ matrix.jdk }}-${{ matrix.maven }}-${{ hashFiles('**/docker-compose.yml', '**/pom.xml') }}
69+
key: maven-${{ matrix.jdk }}-${{ matrix.maven }}-${{ hashFiles('**/compose.yaml', '**/pom.xml') }}
7070
restore-keys: maven-${{ matrix.jdk }}-${{ matrix.maven }}-
7171
- name: Execute Docker Build
7272
env:
File renamed without changes.

0 commit comments

Comments
 (0)