File tree Expand file tree Collapse file tree 3 files changed +1098
-395
lines changed
Expand file tree Collapse file tree 3 files changed +1098
-395
lines changed Original file line number Diff line number Diff line change 1616 steps :
1717 - id : checkout
1818 name : Checkout Repository
19- uses : actions/checkout@v4
19+ uses : actions/checkout@v5
2020
2121 - name : Setup Nodejs
2222 uses : actions/setup-node@v6
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 != ''}}
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}}
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments