6 Commits

Author SHA1 Message Date
jcabillot 1d539eb1d3 Merge pull request 'chore(deps): update hadolint/hadolint-action action to v3.3.0' (#9) from renovate/hadolint-hadolint-action-3.x into master
Docker Build and Push / lint (push) Successful in 6s
Docker Build and Push / build (push) Successful in 19s
Docker Build and Push / test (push) Successful in 12s
Docker Build and Push / push (push) Successful in 17s
Reviewed-on: #9
2026-06-12 07:34:02 -04:00
renovate 2c6e3b3705 chore(deps): update hadolint/hadolint-action action to v3.3.0
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 23s
Docker Build and Push / test (pull_request) Successful in 14s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-12 01:18:41 +00:00
jcabillot dfd03220ca Merge pull request 'fix: add version comments to Gitea Actions workflow' (#8) from fix/action-version-comments into master
Docker Build and Push / lint (push) Successful in 7s
Docker Build and Push / build (push) Successful in 19s
Docker Build and Push / test (push) Successful in 14s
Docker Build and Push / push (push) Successful in 19s
Reviewed-on: #8
2026-06-11 21:13:36 -04:00
Sagent c0242bf1c6 fix: add version comments to Gitea Actions workflow
Docker Build and Push / lint (pull_request) Successful in 7s
Docker Build and Push / build (pull_request) Successful in 17s
Docker Build and Push / test (pull_request) Successful in 9s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-11 23:11:31 +00:00
cloudix_mcp_server 6f35b863fa Merge pull request 'chore(deps): update alpine docker tag to v3.24' (#7) from renovate/alpine-3.x into master
Docker Build and Push / lint (push) Successful in 7s
Docker Build and Push / build (push) Successful in 14s
Docker Build and Push / test (push) Successful in 11s
Docker Build and Push / push (push) Successful in 20s
2026-06-10 19:18:25 -04:00
renovate ce0844714d chore(deps): update alpine docker tag to v3.24
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 17s
Docker Build and Push / test (pull_request) Successful in 9s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-10 17:39:03 +00:00
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -11,8 +11,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
with:
dockerfile: Dockerfile
failure-threshold: error
@@ -21,12 +21,12 @@ jobs:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Build image
run: docker build -t ci-image:${{ github.sha }} .
- name: Save image
run: docker save ci-image:${{ github.sha }} -o image.tar
- uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2
- uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 # main
with:
name: docker-image
path: image.tar
@@ -35,8 +35,8 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with:
name: docker-image
- name: Load image
@@ -49,13 +49,13 @@ jobs:
needs: test
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
- uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with:
name: docker-image
- name: Load image
run: docker load < image.tar
- uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
- uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
+1 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:3.23
FROM alpine:3.24
# hadolint ignore=DL3018
RUN apk add --no-cache bind-tools curl