Skip to content

chore(deps): bump go.temporal.io/api from 1.52.0 to 1.55.0 #1911

chore(deps): bump go.temporal.io/api from 1.52.0 to 1.55.0

chore(deps): bump go.temporal.io/api from 1.52.0 to 1.55.0 #1911

Workflow file for this run

name: End2End tests
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
shell: bash
env:
KIND_VERSION: v0.29.0
OPERATOR_IMAGE_PATH: /tmp/temporal-operator.tar
jobs:
run-e2e:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
kube-version:
- tag: v1.30.13
kind-image: kindest/node:v1.30.13@sha256:397209b3d947d154f6641f2d0ce8d473732bd91c87d9575ade99049aa33cd648
- tag: v1.31.9
kind-image: kindest/node:v1.31.9@sha256:b94a3a6c06198d17f59cca8c6f486236fa05e2fb359cbd75dabbfc348a10b211
- tag: v1.32.5
kind-image: kindest/node:v1.32.5@sha256:e3b2327e3a5ab8c76f5ece68936e4cafaa82edf58486b769727ab0b3b97a5b0d
- tag: v1.33.1
kind-image: kindest/node:v1.33.1@sha256:050072256b9a903bd914c0b2866828150cb229cea0efe5892e2b644d5dd3b34f
name: Run generate E2E tests
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
check-latest: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: temporal-operator:latest
cache-from: type=gha
cache-to: type=gha
outputs: type=docker,dest=${{ env.OPERATOR_IMAGE_PATH }}
- name: Install Kind
uses: helm/kind-action@v1
with:
install_only: true
version: ${{ env.KIND_VERSION }}
- name: Free some disk space
run: sudo rm -rf /usr/share/dotnet && sudo rm -rf /opt/ghc && sudo rm -rf "/usr/local/share/boost"
- name: Run e2e test suite
run: make test-e2e
env:
OPERATOR_IMAGE_PATH: ${{ env.OPERATOR_IMAGE_PATH }}
KUBERNETES_VERSION: ${{ matrix.kube-version.tag }}
KIND_IMAGE: ${{ matrix.kube-version.kind-image }}
- name: Archive e2e logs
uses: actions/upload-artifact@v4
if: always()
with:
name: e2e-artifacts-${{ matrix.kube-version.tag }}
path: out/tests/e2e/