build(deps): bump to Go 1.22

This commit is contained in:
Lukas Zapletal 2025-01-09 19:47:21 +01:00 committed by Lukáš Zapletal
parent 8554d6202d
commit 3a6bea380e
41 changed files with 15 additions and 621 deletions

View file

@ -1,2 +0,0 @@
type: string
example: bar

View file

@ -1,4 +0,0 @@
type: object
properties:
bar:
$ref: ../openapi.yml#/components/schemas/Bar

View file

@ -1,4 +0,0 @@
type: object
properties:
foo:
$ref: ../../openapi.yml#/components/schemas/Foo

View file

@ -1,15 +0,0 @@
openapi: "3.0.3"
info:
title: Recursive refs example
version: "1.0"
paths:
/foo:
$ref: ./paths/foo.yml
components:
schemas:
Foo:
$ref: ./components/Foo.yml
Foo2:
$ref: ./components/Foo/Foo2.yml
Bar:
$ref: ./components/Bar.yml

View file

@ -1,11 +0,0 @@
get:
responses:
"200":
description: OK
content:
application/json:
schema:
type: object
properties:
foo2:
$ref: ../openapi.yml#/components/schemas/Foo2