diff --git a/.github/workflows/stage-test.yml b/.github/workflows/stage-test.yml index df05d3c..c7874fd 100644 --- a/.github/workflows/stage-test.yml +++ b/.github/workflows/stage-test.yml @@ -67,36 +67,6 @@ jobs: with: go-version: ${{ matrix.go-version }} stable: ${{ matrix.go-stable }} - # We are not testing on languages beyond go right now - # name: Set up Python ${{ inputs.python-version }} - # uses: actions/setup-python@v1 - # with: - # python-version: ${{ inputs.python-version }} - # - name: Install Python deps - # run: | - # python -m pip install --upgrade pip requests wheel urllib3 chardet - # - name: Set up DotNet ${{ inputs.dotnet-version }} - # uses: actions/setup-dotnet@v1 - # with: - # dotnet-version: ${{ inputs.dotnet-version }} - # - name: Set up Node ${{ inputs.node-version }} - # uses: actions/setup-node@v2 - # with: - # node-version: ${{ inputs.node-version }} - # - name: Install yarn - # run: | - # npm install -g yarn@1.22 - # - name: Configure AWS Credentials - # uses: aws-actions/configure-aws-credentials@v1 - # # Skip on dry-run - # if: ${{ inputs.live-test }} - # with: - # aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - # aws-region: ${{ env.AWS_REGION }} - # aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - # role-duration-seconds: 3600 - # role-session-name: pulumi-go-provider@githubActions - # role-to-assume: ${{ secrets.AWS_CI_ROLE_ARN }} - name: Install Pulumi CLI uses: pulumi/action-install-pulumi-cli@v2 - name: Test @@ -105,6 +75,6 @@ jobs: fail-fast: false matrix: go-version: - - 1.21.x - 1.22.x + - 1.23.x go-stable: [true] diff --git a/examples/credentials/go.mod b/examples/credentials/go.mod index 8ef5592..39e9293 100644 --- a/examples/credentials/go.mod +++ b/examples/credentials/go.mod @@ -2,7 +2,7 @@ module github.com/pulumi/pulumi-go-provider/examples/credentials replace github.com/pulumi/pulumi-go-provider => ../.. -go 1.21 +go 1.22 require ( github.com/pulumi/pulumi-go-provider v0.0.0-00010101000000-000000000000 diff --git a/examples/dna-store/go.mod b/examples/dna-store/go.mod index c15b09b..b9f9085 100644 --- a/examples/dna-store/go.mod +++ b/examples/dna-store/go.mod @@ -2,7 +2,7 @@ module github.com/pulumi/pulumi-go-provider/examples/dna-store replace github.com/pulumi/pulumi-go-provider => ../.. -go 1.21 +go 1.22 require github.com/pulumi/pulumi-go-provider v0.0.0-00010101000000-000000000000 diff --git a/examples/file/go.mod b/examples/file/go.mod index 151673d..82d22f7 100644 --- a/examples/file/go.mod +++ b/examples/file/go.mod @@ -2,7 +2,7 @@ module github.com/pulumi/pulumi-go-provider/examples/file replace github.com/pulumi/pulumi-go-provider => ../.. -go 1.21 +go 1.22 require ( github.com/pulumi/pulumi-go-provider v0.0.0-00010101000000-000000000000 diff --git a/examples/random-login/go.mod b/examples/random-login/go.mod index 021d8a4..b9954b6 100644 --- a/examples/random-login/go.mod +++ b/examples/random-login/go.mod @@ -2,7 +2,7 @@ module github.com/pulumi/pulumi-go-provider/examples/random-login replace github.com/pulumi/pulumi-go-provider => ../.. -go 1.21 +go 1.22 require ( github.com/blang/semver v3.5.1+incompatible diff --git a/examples/str/go.mod b/examples/str/go.mod index 60e07ed..92ec852 100644 --- a/examples/str/go.mod +++ b/examples/str/go.mod @@ -1,6 +1,6 @@ module github.com/pulumi/pulumi-go-provider/examples/str -go 1.21 +go 1.22 replace github.com/pulumi/pulumi-go-provider => ../.. diff --git a/go.mod b/go.mod index d52c07d..8f94a95 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/pulumi/pulumi-go-provider -go 1.21 +go 1.22 require ( github.com/blang/semver v3.5.1+incompatible diff --git a/infer/tests/go.mod b/infer/tests/go.mod index 53901b7..5bb4e33 100644 --- a/infer/tests/go.mod +++ b/infer/tests/go.mod @@ -1,6 +1,6 @@ module github.com/pulumi/pulumi-go-provider/infer/tests -go 1.21 +go 1.22 replace github.com/pulumi/pulumi-go-provider => ../.. diff --git a/tests/go.mod b/tests/go.mod index f4fa11b..5eaa8e2 100644 --- a/tests/go.mod +++ b/tests/go.mod @@ -1,6 +1,6 @@ module github.com/pulumi/pulumi-go-provider/tests -go 1.21 +go 1.22 replace github.com/pulumi/pulumi-go-provider => ../.