Skip to content

Commit

Permalink
Merge pull request #14 from CrowdStrike/feature/upgrade_provider
Browse files Browse the repository at this point in the history
Feature/upgrade provider
  • Loading branch information
gtheodorio authored Sep 26, 2024
2 parents 1b158c9 + 8b35830 commit 1bee6dc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
- docs
- .devcontainer
- examples
- .github
workflow_dispatch: {}

jobs:
build_sdk:
Expand All @@ -18,7 +20,7 @@ jobs:
dotnetversion:
- 6.0.x
goversion:
- '1.21'
- '1.22.x'
nodeversion:
- 18.x
pythonversion:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
- docs
- .devcontainer
- examples
- .github

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -69,7 +70,7 @@ jobs:
fail-fast: true
matrix:
goversion:
- 1.21.x
- 1.22.x

publish_sdk:
name: Publish SDKs
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ GO_MINOR_VERSION := $(shell go version | cut -c 14- | cut -d' ' -f1 | cut -d'.'
# the (local) version must match the version specified in .github/workflows/release.yml
# otherwise publkishing the Go SDK of the provider will fail
REQUIRED_GO_MAJOR_VERSION := 1
REQUIRED_GO_MINOR_VERSION := 21
REQUIRED_GO_MINOR_VERSION := 22
GO_VERSION_VALIDATION_ERR_MSG := Golang version $(REQUIRED_GO_MAJOR_VERSION).$(REQUIRED_GO_MINOR_VERSION) is required

.PHONY: development provider build_sdks build_nodejs build_dotnet build_go build_python cleanup validate_go_version
Expand Down

0 comments on commit 1bee6dc

Please sign in to comment.