Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0

- name: Fetch changes
run: git fetch --prune --tags --unshallow
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.6.0
with:
fetch-depth: 0
# v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gobuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v3.6.1
with:
go-version: 1.18.x
go-version: 1.18.10
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
- name: golangci-lint
# v3
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
with:
version: v1.48.0
version: v1.64.8
# skip-go-installation: true
# skip-pkg-cache: true
# skip-build-cache: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/modular-docs-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.6.0
name: Checkout Source
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v3.6.1
with:
go-version: 1.17.x
go-version: 1.17.13
- run: make generate-downstream-docs
name: Generate generate-downstream-docs
- name: Deploy
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.6.0
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v3.6.1
with:
go-version: 1.18.x
go-version: 1.18.10

- name: Check tag
id: check-tag
Expand All @@ -29,7 +29,7 @@ jobs:
echo "::set-output name=prerelease::true"
fi
- id: set-version
uses: actions/github-script@v6
uses: actions/github-script@v6.4.1
with:
script: |
const version = context.ref.replace(/^refs\/tags\//, '').replace(/^v/, '')
Expand Down Expand Up @@ -82,9 +82,9 @@ jobs:
runs-on: ubuntu-latest
if: needs.release.steps.check-tag.outputs.prerelease == 'false'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3.6.0
- name: Notify tools repo
uses: actions/github-script@v6
uses: actions/github-script@v6.4.1
with:
script: |
github.request('POST /repos/redhat-developer/app-services-tools/actions/workflows/20880234/dispatches', {
Expand Down
30 changes: 15 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
module github.com/redhat-developer/app-services-cli

go 1.18
go 1.26.5

require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/BurntSushi/toml v1.2.1
github.com/AlecAivazis/survey/v2 v2.3.7
github.com/BurntSushi/toml v1.6.0
github.com/MakeNowJust/heredoc v1.0.0
github.com/Nerzal/gocloak/v7 v7.11.0
github.com/aerogear/charmil v0.8.3
github.com/blang/semver v3.5.1+incompatible
github.com/briandowns/spinner v1.19.0
github.com/coreos/go-oidc/v3 v3.4.0
github.com/fatih/color v1.13.0
github.com/briandowns/spinner v1.23.2
github.com/coreos/go-oidc/v3 v3.20.0
github.com/fatih/color v1.19.0
github.com/golang-jwt/jwt/v4 v4.5.2
github.com/google/go-github/v39 v39.2.0
github.com/jackdelahunt/survey-json-schema v0.13.0
github.com/kataras/tablewriter v0.0.0-20180708051242-e063d29b7c23 // indirect
github.com/landoop/tableprinter v0.0.0-20201125135848-89e81fc956e7
github.com/mattn/go-isatty v0.0.16
github.com/nicksnyder/go-i18n/v2 v2.2.1
github.com/openconfig/goyang v1.2.0
github.com/mattn/go-isatty v0.0.22
github.com/nicksnyder/go-i18n/v2 v2.6.1
github.com/openconfig/goyang v1.6.3
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/pkg/errors v0.9.1
github.com/redhat-developer/service-binding-operator v0.9.0
github.com/spf13/cobra v1.6.1
github.com/spf13/pflag v1.0.5
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/wtrocki/go-github-selfupdate v1.2.4
github.com/xtgo/uuid v0.0.0-20140804021211-a0b114877d4c
gitlab.com/c0b/go-ordered-json v0.0.0-20201030195603-febf46534d5a
golang.org/x/oauth2 v0.3.0
golang.org/x/text v0.5.0
golang.org/x/text v0.40.0
gopkg.in/AlecAivazis/survey.v1 v1.8.8
gopkg.in/segmentio/analytics-go.v3 v3.1.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.24.8
k8s.io/apimachinery v0.24.8
k8s.io/api v0.36.2
k8s.io/apimachinery v0.36.2
k8s.io/client-go v0.24.8
k8s.io/utils v0.0.0-20220713171938-56c0de1e6f5e
)
Expand Down Expand Up @@ -91,7 +91,7 @@ require (
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/openshift-online/ocm-sdk-go v0.1.306
github.com/openshift-online/ocm-sdk-go v0.1.505
github.com/prometheus/client_golang v1.14.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.39.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.2.0",
"@docusaurus/preset-classic": "2.2.0",
"@docusaurus/core": "2.4.3",
"@docusaurus/preset-classic": "2.4.3",
"@mdx-js/react": "1.6.22",
"@svgr/webpack": "6.5.1",
"clsx": "1.2.1",
Expand Down
Loading
Loading