6 Commits
Author SHA1 Message Date
jcabillot 1c2f7bf45c 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 8s
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 15s
Reviewed-on: #9
2026-06-12 07:33:45 -04:00
renovate 7667226435 chore(deps): update hadolint/hadolint-action action to v3.3.0
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Successful in 12s
Docker Build and Push / test (pull_request) Successful in 10s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-12 01:21:22 +00:00
jcabillot 2397f26b47 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 22s
Docker Build and Push / test (push) Successful in 11s
Docker Build and Push / push (push) Successful in 22s
Reviewed-on: #8
2026-06-11 21:13:28 -04:00
Sagent b507dcfcbc fix: add version comments to Gitea Actions workflow
Docker Build and Push / lint (pull_request) Successful in 14s
Docker Build and Push / build (pull_request) Successful in 12s
Docker Build and Push / test (pull_request) Successful in 8s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-11 23:11:39 +00:00
cloudix_mcp_server 8674d7dd11 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 8s
Docker Build and Push / build (push) Successful in 16s
Docker Build and Push / test (push) Successful in 10s
Docker Build and Push / push (push) Successful in 20s
2026-06-10 19:19:14 -04:00
renovate 9eace0422e 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 12s
Docker Build and Push / test (pull_request) Successful in 9s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-09 20:58:49 +00:00
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -12,22 +12,22 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Hadolint - name: Hadolint
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: lint needs: lint
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Build image - name: Build image
run: docker build -t ci-image:${{ github.sha }} . run: docker build -t ci-image:${{ github.sha }} .
- name: Save image - name: Save image
run: docker save ci-image:${{ github.sha }} > image.tar run: docker save ci-image:${{ github.sha }} > image.tar
- name: Upload artifact - name: Upload artifact
uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 uses: ChristopherHX/gitea-upload-artifact@62ac910c5d3dfa85c7cb2df15afe2e342b2407c2 # main
with: with:
name: docker-image name: docker-image
path: image.tar path: image.tar
@@ -37,9 +37,9 @@ jobs:
needs: build needs: build
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact - name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with: with:
name: docker-image name: docker-image
- name: Load image - name: Load image
@@ -53,15 +53,15 @@ jobs:
needs: test needs: test
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Download artifact - name: Download artifact
uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 uses: ChristopherHX/gitea-download-artifact@75635f32b4c1c41c4b3d64e8f85210112ed4c9c7 # main
with: with:
name: docker-image name: docker-image
- name: Load image - name: Load image
run: docker load < image.tar run: docker load < image.tar
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
+1 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:3.23 FROM alpine:3.24
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>" LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# hadolint ignore=DL3018 # hadolint ignore=DL3018