Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
env:
LOG_LEVEL: debug
RENOVATE_BRANCH_PREFIX: renovate-github/
RENOVATE_ENABLED_MANAGERS: '["pep621", "github-actions"]'
RENOVATE_ENABLED_MANAGERS: '["pep621", "github-actions", "gitlabci"]'
RENOVATE_GIT_AUTHOR: Renovate GitHub Bot <github@renovatebot.com>
RENOVATE_OPTIMIZE_FOR_DISABLED: 'true'
RENOVATE_PLATFORM: github
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
commitlint:
image:
name: commitlint/commitlint:18.6.2
name: commitlint/commitlint:18.6.2@sha256:d82e66abdeda7fb4584c3206ddcf9cc4c6c9cb67e433030de0904fed3dab662a
entrypoint: [""]
interruptible: true
rules:
Expand Down
4 changes: 2 additions & 2 deletions .gitlab/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dev-container-publish:
image: docker:25.0.3
image: docker:25.0.3@sha256:0d70c541ee98e66b8f7ece8c0e9f7910732466e337a9087c2ac2868ef0775092
parallel:
matrix:
- PYTHON_VERSION:
Expand Down Expand Up @@ -29,7 +29,7 @@ dev-container-publish:
--tag ${CI_REGISTRY_IMAGE}/dev:py${PYTHON_VERSION} \
--target dev
services:
- docker:25.0.3-dind
- docker:25.0.3-dind@sha256:0d70c541ee98e66b8f7ece8c0e9f7910732466e337a9087c2ac2868ef0775092
stage: build
variables:
DOCKER_TLS_CERTDIR: /certs
Expand Down
6 changes: 3 additions & 3 deletions .gitlab/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pages-build:
- make release-notes > release-notes.md
stage: release
release-publish:
image: registry.gitlab.com/gitlab-org/release-cli:v0.16.0
image: registry.gitlab.com/gitlab-org/release-cli:v0.16.0@sha256:5a71acbadc47c1971100f5246b09f88ba09e84ebe7769e425475dce85245a2bf
needs:
- pages-build
release:
Expand All @@ -24,7 +24,7 @@ release-publish:
- echo "Running the release job."
stage: release
container-publish:
image: docker:25.0.3
image: docker:25.0.3@sha256:0d70c541ee98e66b8f7ece8c0e9f7910732466e337a9087c2ac2868ef0775092
needs:
- release-publish
parallel:
Expand Down Expand Up @@ -65,7 +65,7 @@ container-publish:
--tag ${CI_REGISTRY_IMAGE}:py${PYTHON_VERSION}-${CI_COMMIT_TAG} \
--target prod
services:
- docker:25.0.3-dind
- docker:25.0.3-dind@sha256:0d70c541ee98e66b8f7ece8c0e9f7910732466e337a9087c2ac2868ef0775092
stage: release
variables:
DOCKER_TLS_CERTDIR: /certs
Expand Down
4 changes: 2 additions & 2 deletions .gitlab/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ renovate:
key: ${CI_COMMIT_REF_SLUG}-renovate
paths:
- renovate/cache/renovate/repository/
image: renovate/renovate:37.202.2
image: renovate/renovate:37.202.2@sha256:6b5508487d42dcd36f95ff1139958f3b755bc8ff77b805b86eb1c59db943ef2f
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && $RENOVATE_TOKEN != null
script: renovate $RENOVATE_EXTRA_FLAG
Expand All @@ -12,7 +12,7 @@ renovate:
LOG_LEVEL: debug
RENOVATE_BASE_DIR: $CI_PROJECT_DIR/renovate
RENOVATE_BRANCH_PREFIX: renovate-gitlab/
RENOVATE_ENABLED_MANAGERS: '["pep621"]'
RENOVATE_ENABLED_MANAGERS: '["pep621", "gitlabci"]'
RENOVATE_ENDPOINT: $CI_API_V4_URL
RENOVATE_GIT_AUTHOR: Renovate GitLab Bot <gitlab@renovatebot.com>
RENOVATE_OPTIMIZE_FOR_DISABLED: 'true'
Expand Down
5 changes: 5 additions & 0 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"config:best-practices",
":maintainLockFilesWeekly"
],
"gitlabci": {
"fileMatch": [
"^.gitlab/workflows/.*\\.yml$"
]
},
"ignorePaths": [
"**/template/**"
]
Expand Down