Bump kubernetes version from 1.29 to 1.30 #871
Workflow file for this run
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
name: main | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
env: | |
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: make setup | |
- run: make lint | |
- run: make check-generate | |
- run: make test | |
- run: make build | |
- run: make image | |
kindtest: | |
name: Run test on kind | |
strategy: | |
matrix: | |
k8s-version: ["1.28.13", "1.29.8", "1.30.4"] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Configure GIT | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "ci-kindtest" | |
echo '${{ secrets.TESTREPO_DEPLOY_KEY }}' > /tmp/deploy-key.pem | |
chmod 600 /tmp/deploy-key.pem | |
- name: Create secret files | |
run: | | |
echo '${{ secrets.APP_PRIVATE_KEY }}' > .secret.private-key.pem | |
cat <<'EOF' > .secret.env.sh | |
export GITHUB_APP_ID=${{ secrets.APP_ID }} | |
export GITHUB_APP_INSTALLATION_ID=${{ secrets.APP_INSTALLATION_ID }} | |
export SLACK_CHANNEL=${{ secrets.SLACK_CHANNEL }} | |
export SLACK_APP_TOKEN=${{ secrets.SLACK_APP_TOKEN }} | |
export SLACK_BOT_TOKEN=${{ secrets.SLACK_BOT_TOKEN }} | |
EOF | |
- run: make setup KINDTEST_K8S_VERSION=${{ matrix.k8s-version }} | |
- run: make -C kindtest start KINDTEST_K8S_VERSION=${{ matrix.k8s-version }} | |
- run: make -C kindtest test | |
env: | |
GIT_SSH_COMMAND: "ssh -i /tmp/deploy-key.pem" | |
- run: make -C kindtest logs | |
if: always() | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: logs-${{ matrix.k8s-version }} | |
path: ./tmp/logs/ |