Skip to content

Commit 0d3f25c

Browse files
committed
tests: fixup docker compose
1 parent dea7e7d commit 0d3f25c

File tree

3 files changed

+34
-34
lines changed

3 files changed

+34
-34
lines changed

.github/workflows/dbaas-operator.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
experimental: true
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: "0"
2828
- name: Setup correct Go version
29-
uses: actions/setup-go@v2
29+
uses: actions/setup-go@v5
3030
with:
3131
go-version: '1.16'
3232
- name: Install kustomize, kubebuilder, helm
@@ -42,7 +42,7 @@ jobs:
4242
curl -sL https://get.helm.sh/helm-v3.6.3-linux-amd64.tar.gz | tar -xz -C /tmp/
4343
sudo mv /tmp/linux-amd64/helm /usr/local/bin/helm
4444
chmod +x /usr/local/bin/helm
45-
- name: Check go, kustomize, kubebuilder, helm, docker-compose, kind versions
45+
- name: Check go, kustomize, kubebuilder, helm, docker compose, kind versions
4646
run: |
4747
go version
4848
kustomize version
@@ -55,13 +55,13 @@ jobs:
5555
node_image: kindest/node:${{ matrix.kindest_node_version }}
5656
# config: test-resources/kind-config.yaml
5757
- name: Set up Docker Buildx
58-
uses: docker/setup-buildx-action@v1
58+
uses: docker/setup-buildx-action@v3
5959
- name: Build
60-
uses: docker/build-push-action@v2
60+
uses: docker/build-push-action@v6
6161
with:
6262
context: .
6363
load: true
6464
tags: amazeeio/dbaas-operator:test-tag
6565
- name: Run Tests
6666
run: |
67-
make operator-test
67+
make operator-test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ operator-test:
8585
./operator-test.sh
8686

8787
clean:
88-
docker-compose down
88+
docker compose down
8989
kind delete cluster --name ${KIND_NAME}
9090

9191
local-circle:

0 commit comments

Comments
 (0)