File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,13 @@ jobs:
136
136
# 3. Putting the robot account's username and password in GitHub actions environment
137
137
if : env.PUBLIC == 'true'
138
138
run : |
139
- docker login -u "${{ secrets.QUAY_USERNAME }}" -p "${{ secrets.QUAY_PASSWORD }}" "${{ env. REGISTRY } }"
140
- if [ "${{ env. PUBLISH_DOCKERIO } }" = "true" ]; then
139
+ docker login -u "${{ secrets.QUAY_USERNAME }}" -p "${{ secrets.QUAY_PASSWORD }}" "${REGISTRY}"
140
+ if [ "${PUBLISH_DOCKERIO}" = "true" ]; then
141
141
docker login -u "${{ secrets.DOCKERHUB_USERNAME }}" -p "${{ secrets.DOCKERHUB_TOKEN }}" docker.io
142
142
fi
143
+ env :
144
+ PUBLISH_DOCKERIO : " true"
145
+ REGISTRY : ${{ env.REGISTRY }}
143
146
144
147
# image: env.IMAGE
145
148
#
Original file line number Diff line number Diff line change 16
16
repos :
17
17
# https://github.com/pre-commit/mirrors-prettier is not maintained
18
18
- repo : https://github.com/rbubley/mirrors-prettier
19
- rev : v3.5.3
19
+ rev : v3.6.2
20
20
hooks :
21
21
- id : prettier
22
22
23
23
# autoformat and lint Python code
24
24
- repo : https://github.com/astral-sh/ruff-pre-commit
25
- rev : v0.11.8
25
+ rev : v0.12.7
26
26
hooks :
27
27
- id : ruff
28
28
args : ["--select=I", "--fix", "--show-fixes"]
31
31
# Static security analysis of GitHub actions https://github.com/woodruffw/zizmor
32
32
# Additional config is in .github/zizmor.yml
33
33
- repo : https://github.com/woodruffw/zizmor-pre-commit
34
- rev : v1.6 .0
34
+ rev : v1.11 .0
35
35
hooks :
36
36
- id : zizmor
37
+ args :
38
+ - --fix=safe
You can’t perform that action at this time.
0 commit comments