feat(ci): refactor pipelines — hadolint, PR checks, tag releases, nightly rebuild #10

Merged
jcabillot merged 9 commits from fix/refactor-ci-pipelines into master 2026-06-12 16:16:43 -04:00
Showing only changes of commit 2fe73e8cc8 - Show all commits
+3 -3
View File
@@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Hadolint
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
continue-on-error: true
@@ -18,7 +18,7 @@ jobs:
needs: lint
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Build image
run: docker build -t ci-image:${{ github.sha }} .
@@ -27,7 +27,7 @@ jobs:
needs: build
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd3143118844c72031235010 # v6
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Build image
run: docker build -t ci-image:${{ github.sha }} .
- name: Run tests