diff --git a/.config/mise.test.toml b/.config/mise.test.toml index 3ab7402..7176fab 100644 --- a/.config/mise.test.toml +++ b/.config/mise.test.toml @@ -1,11 +1,3 @@ # WARNING: This file is autogenerated - changes will be overwritten when regenerated by https://github.com/pulumi/ci-mgmt -# Overrides for test workflows - -[env] -# Acceptance (specifically providertest) tests require that PULUMI_HOME be the default -PULUMI_HOME = "{{ env.HOME }}/.pulumi" - -[tools] -# always use pulumi latest for tests -pulumi = "latest" +# Overrides for test workflows -- currently empty. diff --git a/.github/workflows/comment-on-stale-issues.yml b/.github/workflows/comment-on-stale-issues.yml index 2751337..1d87c57 100644 --- a/.github/workflows/comment-on-stale-issues.yml +++ b/.github/workflows/comment-on-stale-issues.yml @@ -1,9 +1,8 @@ +# WARNING: This file is autogenerated - changes will be overwritten when regenerated by https://github.com/pulumi/ci-mgmt name: "Comment on stale issues" on: workflow_dispatch: {} - schedule: - - cron: "46 4 * * *" # run once per day jobs: cleanup: diff --git a/.github/workflows/weekly-pulumi-update.yml b/.github/workflows/weekly-pulumi-update.yml index cf86048..fe898cc 100644 --- a/.github/workflows/weekly-pulumi-update.yml +++ b/.github/workflows/weekly-pulumi-update.yml @@ -68,10 +68,10 @@ jobs: git checkout -b update-pulumi/${{ github.run_id }}-${{ github.run_number }} - find . -name go.mod -execdir sh -c 'go get github.com/pulumi/pulumi/pkg/v3 github.com/pulumi/pulumi/sdk/v3; go mod tidy' \; - gh repo view pulumi/pulumi --json latestRelease --jq .latestRelease.tagName | sed 's/^v//' > .pulumi.version + VERSION=$(cat .pulumi.version) find . -name go.mod -execdir sh -c 'go get github.com/pulumi/pulumi/pkg/v3@v${VERSION} github.com/pulumi/pulumi/sdk/v3@v${VERSION}; go mod tidy' \; + git update-index -q --refresh if ! git diff-files --quiet; then echo changes=1 >> "$GITHUB_OUTPUT"; fi