Skip to content

chore(deps): update golang:1.25.9 docker digest to 8a7adc2 #3965

chore(deps): update golang:1.25.9 docker digest to 8a7adc2

chore(deps): update golang:1.25.9 docker digest to 8a7adc2 #3965

name: Konnect Integration Test
concurrency:
# Only run one workflow at a time. Konnect integration tests cannot be run in parallel
# as they rely on manifests with static identifiers and/or names that would conflict
# if run in parallel.
# Ref: https://docs.github.com/en/actions/using-jobs/using-concurrency
group: ${{ github.workflow }}
cancel-in-progress: false
on:
pull_request:
types: [opened, synchronize, reopened, labeled, unlabeled]
jobs:
integration:
# Skip if the PR has the 'skip-konnect' label
if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-konnect') }}
timeout-minutes: ${{ fromJSON(vars.DECK_WORKFLOW_KONNECT_TIMEOUT || '10') }}
env:
KONG_ANONYMOUS_REPORTS: "off"
DECK_KONNECT_EMAIL : ${{ secrets.DECK_KONNECT_EMAIL }}
DECK_KONNECT_PASSWORD : ${{ secrets.DECK_KONNECT_PASSWORD }}
DECK_KONNECT_ADDR : ${{ secrets.DECK_KONNECT_ADDR }}
DECK_KONNECT_TOKEN : ${{ secrets.DECK_KONNECT_TOKEN }}
DECK_TIMEOUT: ${{ vars.DECK_TIMEOUT || '60' }}
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: go.mod
- name: Run integration tests
# DECK_WORKFLOW_KONNECT_TIMEOUT is a plain number of minutes (used for timeout-minutes above), append 'm' for go test -timeout.
run: make test-integration TEST_TIMEOUT=${{ vars.DECK_WORKFLOW_KONNECT_TIMEOUT || '20' }}m