fix: update pipelines
Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Failing after 1m43s
Publish / Check GoReleaser config (push) Failing after 1m19s
Publish / Publish provider (push) Has been skipped
CI Workflow / Prepare GO cache (pull_request) Successful in 6m55s
CI Workflow / Test readiness for publishing provider (pull_request) Has been skipped
CI Workflow / CI run tests (pull_request) Has been skipped
CI Workflow / CI run build and linting (pull_request) Has been skipped
CI Workflow / Code coverage report (pull_request) Has been skipped
TF Acceptance Tests Workflow / Acceptance Tests (pull_request) Failing after 28m45s

fix: implement sql server 200 error
This commit is contained in:
Marcel S. Henselin 2026-03-18 09:35:14 +01:00
parent aaabadde1a
commit 1fd2df5c76
11 changed files with 196 additions and 15 deletions

View file

@ -28,7 +28,7 @@ jobs:
config:
if: ${{ github.event_name != 'schedule' }}
name: Check GoReleaser config
runs-on: ubuntu-latest
runs-on: stackit-docker
steps:
- name: Checkout
uses: actions/checkout@v6
@ -40,7 +40,7 @@ jobs:
prepare:
name: Prepare GO cache
runs-on: ubuntu-latest
runs-on: stackit-docker
permissions:
actions: read # Required to identify workflow run.
checks: write # Required to add status summary.
@ -102,7 +102,7 @@ jobs:
needs:
- config
- prepare
runs-on: ubuntu-latest
runs-on: stackit-docker
permissions:
actions: read # Required to identify workflow run.
checks: write # Required to add status summary.
@ -185,7 +185,7 @@ jobs:
testing:
name: CI run tests
runs-on: ubuntu-latest
runs-on: stackit-docker
needs:
- config
- prepare
@ -278,7 +278,7 @@ jobs:
main:
if: ${{ github.event_name != 'schedule' }}
name: CI run build and linting
runs-on: ubuntu-latest
runs-on: stackit-docker
needs:
- config
- prepare
@ -329,7 +329,7 @@ jobs:
code_coverage:
name: "Code coverage report"
if: github.event_name == 'pull_request' # Do not run when workflow is triggered by push to main branch
runs-on: ubuntu-latest
runs-on: stackit-docker
needs:
- main
- prepare