[INLONG-10162][DataProxy] Upgrade golang.org/x/net to version 0.23.0.… #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Licensed to the Apache Software Foundation (ASF) under one or more | |
# contributor license agreements. See the NOTICE file distributed with | |
# this work for additional information regarding copyright ownership. | |
# The ASF licenses this file to You under the Apache License, Version 2.0 | |
# (the "License"); you may not use this file except in compliance with | |
# the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: InLong Helm Charts Lint and Test | |
on: | |
push: | |
paths: | |
- '.github/workflows/ci_chart_test.yml' | |
- '.github/ct.yml' | |
- '.github/kind.yml' | |
- 'docker/kubernetes/**' | |
- '!docker/kubernetes/NOTES.txt' | |
- '!**.md' | |
pull_request: | |
paths: | |
- '.github/workflows/ci_chart_test.yml' | |
- '.github/ct.yml' | |
- '.github/kind.yml' | |
- 'docker/kubernetes/**' | |
- '!docker/kubernetes/NOTES.txt' | |
- '!**.md' | |
env: | |
CT_CONFIG_PATH: '.github/ct.yml' | |
KIND_CONFIG_PATH: '.github/kind.yml' | |
jobs: | |
chart-test: | |
name: Lint and test charts | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
kubernetes-version: | |
- 'kindest/node:v1.21.10' | |
- 'kindest/node:v1.23.4' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Set up Helm | |
uses: azure/setup-helm@v1 | |
with: | |
version: v3.5.0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Set up chart-testing | |
uses: ./.github/actions/chart-testing-action | |
- name: List changed charts | |
id: list-changed | |
run: | | |
changed=$(ct list-changed --config ${{ env.CT_CONFIG_PATH }} --target-branch ${{ github.event.repository.default_branch }}) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
echo "Changed charts: $changed" | |
else | |
echo "Charts are not changed, they will not be linted, validated, installed and tested." | |
fi | |
# NOTE: If the charts have not changed, they will not be linted, validated, installed and tested. | |
- name: Lint and validate charts | |
run: ct lint --config ${{ env.CT_CONFIG_PATH }} | |
- name: Create Kind cluster | |
if: ${{ steps.list-changed.outputs.changed == 'true' }} | |
uses: ./.github/actions/kind-action | |
with: | |
config: ${{ env.KIND_CONFIG_PATH }} | |
node_image: ${{ matrix.kubernetes-version }} | |
- name: Install and test charts | |
if: ${{ success() && steps.list-changed.outputs.changed == 'true' }} | |
run: ct install --config ${{ env.CT_CONFIG_PATH }} |