ci: Pin docker image to commit hash (#2354)

This commit is contained in:
Ayaz Salikhov
2025-07-22 13:38:27 +01:00
committed by GitHub
parent 00333a8d16
commit 3f0f20a542
12 changed files with 21 additions and 18 deletions

View File

@@ -42,7 +42,10 @@ jobs:
os: [heavy]
conan_profile: [gcc, clang]
build_type: [Release, Debug]
container: ['{ "image": "ghcr.io/xrplf/clio-ci:latest" }']
container:
[
'{ "image": "ghcr.io/xrplf/clio-ci:25e55ef95248539a3b1106985e1b30b1e73462b7" }',
]
static: [true]
include:
@@ -69,7 +72,7 @@ jobs:
uses: ./.github/workflows/build_impl.yml
with:
runs_on: heavy
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
container: '{ "image": "ghcr.io/xrplf/clio-ci:25e55ef95248539a3b1106985e1b30b1e73462b7" }'
conan_profile: gcc
build_type: Debug
disable_cache: false
@@ -86,7 +89,7 @@ jobs:
needs: build-and-test
runs-on: heavy
container:
image: ghcr.io/xrplf/clio-ci:latest
image: ghcr.io/xrplf/clio-ci:25e55ef95248539a3b1106985e1b30b1e73462b7
steps:
- uses: actions/checkout@v4