Skip to content

Commit 7ec1f26

Browse files
committed
Merge branch 'main' into dependabot/github_actions/main/actions/checkout-5
2 parents 9aa100a + c9193fc commit 7ec1f26

File tree

3 files changed

+1097
-394
lines changed

3 files changed

+1097
-394
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Set up QEMU
3939
if: ${{ steps.version.outputs.VERSION != ''}}
40-
uses: docker/setup-qemu-action@v2
40+
uses: docker/setup-qemu-action@v3
4141

4242
- name: Set up Docker Buildx
4343
if: ${{ steps.version.outputs.VERSION != ''}}
@@ -54,7 +54,7 @@ jobs:
5454
- name: Build and Push Docker Image
5555
if: ${{ steps.version.outputs.VERSION != ''}}
5656
id: build-and-push
57-
uses: docker/build-push-action@v2
57+
uses: docker/build-push-action@v6
5858
with:
5959
context: .
6060
build-args: VERSION=${{steps.version.outputs.VERSION}}

.github/workflows/test.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Dockerfile build test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
concurrency:
9+
group: ci-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read
17+
steps:
18+
- name: Check out repository
19+
uses: actions/checkout@v4
20+
21+
# Build using your Makefile target (runs: docker build -t hello-universe-db .)
22+
- name: Build Docker image
23+
run: make build
24+
25+
# Quick sanity check that the image exists
26+
- name: Verify image was built
27+
run: docker image inspect hello-universe-db:latest > /dev/null

0 commit comments

Comments
 (0)