chore(deps): bump golang.org/x/sync from 0.8.0 to 0.10.0 #1845
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: 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: true | |
on: [pull_request] | |
jobs: | |
integration: | |
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} | |
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 }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run integration tests | |
run: make test-integration |