-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from ory/go-121
chore: bump to Go 1.21
- Loading branch information
Showing
10 changed files
with
28 additions
and
30 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'Docs Build' | ||
description: 'Build and publish docs' | ||
name: "Docs Build" | ||
description: "Build and publish docs" | ||
inputs: | ||
swag-spec-location: | ||
description: Location where the Swagger spec should be saved to | ||
|
@@ -24,7 +24,7 @@ runs: | |
token: ${{ inputs.token }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
@@ -93,4 +93,3 @@ runs: | |
git pull origin master --rebase || true | ||
git push origin HEAD:master || true | ||
shell: bash | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: 'Docs CLI (Next Generation)' | ||
description: 'Build CLI docs and commit to ory/docs' | ||
name: "Docs CLI (Next Generation)" | ||
description: "Build CLI docs and commit to ory/docs" | ||
inputs: | ||
token: | ||
description: Personal access token | ||
default: ${{ github.token }} | ||
required: false | ||
docs-branch: | ||
description: On which ory/docs branch to operate on | ||
default: 'master' | ||
default: "master" | ||
required: false | ||
arg: | ||
description: Optional additional argument to .bin/clidoc (inserted before output-dir) | ||
default: '' | ||
default: "" | ||
required: false | ||
output-dir: | ||
description: Directory without leading slash in ory/docs to write the CLI docs to | ||
|
@@ -27,7 +27,7 @@ runs: | |
fetch-depth: 0 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'Docs CLI' | ||
description: 'Build CLI docs' | ||
name: "Docs CLI" | ||
description: "Build CLI docs" | ||
inputs: | ||
token: | ||
description: Personal access token | ||
|
@@ -25,7 +25,7 @@ runs: | |
fetch-depth: 0 | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'Synchronize with Docs' | ||
description: 'Synchronizes files such as OpenAPI and Config Schema with the docs' | ||
name: "Synchronize with Docs" | ||
description: "Synchronizes files such as OpenAPI and Config Schema with the docs" | ||
inputs: | ||
api-spec-location: | ||
description: Location where the OpenAPI Schema is available at | ||
|
@@ -24,7 +24,7 @@ runs: | |
token: ${{ inputs.token }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'Releaser' | ||
description: 'Release automation action' | ||
name: "Releaser" | ||
description: "Release automation action" | ||
inputs: | ||
token: | ||
description: Personal access token | ||
|
@@ -27,10 +27,10 @@ runs: | |
fetch-depth: 0 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
node-version: "16" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'Render Version Schema' | ||
description: 'Render version schema action' | ||
name: "Render Version Schema" | ||
description: "Render version schema action" | ||
inputs: | ||
token: | ||
description: Personal access token | ||
|
@@ -18,10 +18,10 @@ runs: | |
fetch-depth: 0 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
node-version: "16" | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
@@ -45,4 +45,3 @@ runs: | |
git pull origin master --rebase || true | ||
git push origin HEAD:master || true | ||
shell: bash | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: 'SDK Generate' | ||
description: 'SDK generation automation' | ||
name: "SDK Generate" | ||
description: "SDK generation automation" | ||
inputs: | ||
token: | ||
description: Personal access token | ||
|
@@ -27,7 +27,7 @@ runs: | |
token: ${{ inputs.token || github.token }} | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ runs: | |
path: current-repo | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
- run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "ory-bot" | ||
|