Skip to content

Commit 4521a51

Browse files
authored
Set default Docker image tags back to 'latest' in the CI (#428)
The 'latest' has been manually updated after `dev-v10` update.
1 parent a3e412c commit 4521a51

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/api-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# because the `env` context is only accessible at the step level;
4242
# hence, it is hard-coded
4343
image: |-
44-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '10.3.2.0' }}
44+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || 'latest' }}
4545
# Use the 'runner' user (1001) from github so checkout actions work properly
4646
# https://github.com/actions/runner/issues/2033#issuecomment-1598547465
4747
options: --user 1001

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# because the `env` context is only accessible at the step level;
6565
# hence, it is hard-coded
6666
image: |-
67-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '10.3.2.0' }}
67+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || 'latest' }}
6868
steps:
6969
- name: Set parameters as env
7070
run: |

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# because the `env` context is only accessible at the step level;
4444
# hence, it is hard-coded
4545
image: |-
46-
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || '10.3.2.0' }}
46+
ghcr.io/khiopsml/khiops-python/khiopspydev-ubuntu22.04:${{ inputs.image-tag || 'latest' }}
4747
credentials:
4848
username: ${{ github.actor }}
4949
password: ${{ secrets.GITHUB_TOKEN }}
@@ -312,7 +312,7 @@ jobs:
312312
# because the `env` context is only accessible at the step level;
313313
# hence, it is hard-coded
314314
image: |-
315-
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || '10.3.2.0' }}
315+
ghcr.io/khiopsml/khiops-python/khiopspydev-${{ matrix.container }}:${{ inputs.image-tag || 'latest' }}
316316
credentials:
317317
username: ${{ github.actor }}
318318
password: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)