update base image of nginx to 1.21.6 (#9257)
* add workflow dispatch and update nginx base Signed-off-by: James Strong <strong.james.e@gmail.com> * e2e were failing, added a go mod tidy Signed-off-by: James Strong <strong.james.e@gmail.com> * e2e were failing, added a go mod tidy Signed-off-by: James Strong <strong.james.e@gmail.com> * push mod and sum from main Signed-off-by: James Strong <strong.james.e@gmail.com> * Update NGINX_BASE Co-authored-by: Jintao Zhang <tao12345666333@163.com> Signed-off-by: James Strong <strong.james.e@gmail.com> Co-authored-by: Jintao Zhang <tao12345666333@163.com>
This commit is contained in:
parent
490ecffc52
commit
4bd7e176d8
2 changed files with 13 additions and 4 deletions
15
.github/workflows/ci.yaml
vendored
15
.github/workflows/ci.yaml
vendored
|
|
@ -9,6 +9,13 @@ on:
|
|||
branches:
|
||||
- main
|
||||
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
run_e2e:
|
||||
description: 'Force e2e to run'
|
||||
required: true
|
||||
type: boolean
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
|
|
@ -40,9 +47,11 @@ jobs:
|
|||
- 'rootfs/**/*'
|
||||
- 'TAG'
|
||||
- 'test/e2e/**/*'
|
||||
- 'NGINX_BASE'
|
||||
charts:
|
||||
- 'charts/ingress-nginx/Chart.yaml'
|
||||
- 'charts/ingress-nginx/**/*'
|
||||
- 'NGINX_BASE'
|
||||
|
||||
|
||||
security:
|
||||
|
|
@ -126,7 +135,7 @@ jobs:
|
|||
- changes
|
||||
- build
|
||||
if: |
|
||||
(needs.changes.outputs.charts == 'true')
|
||||
(needs.changes.outputs.charts == 'true') || ${{ inputs.run_e2e }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
@ -209,7 +218,7 @@ jobs:
|
|||
- changes
|
||||
- build
|
||||
if: |
|
||||
(needs.changes.outputs.go == 'true')
|
||||
(needs.changes.outputs.go == 'true') || ${{ inputs.run_e2e }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
@ -266,7 +275,7 @@ jobs:
|
|||
- changes
|
||||
- build
|
||||
if: |
|
||||
(needs.changes.outputs.go == 'true')
|
||||
(needs.changes.outputs.go == 'true') || ${{ inputs.run_e2e }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue