generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions workflows. (#364)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit f98a516226a14a38cb27f265934e80505c29b047.
- Loading branch information
1 parent
7565328
commit 23b65ba
Showing
6 changed files
with
104 additions
and
83 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,11 +20,21 @@ env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
TF_APPEND_USER_AGENT: pulumi | ||
jobs: | ||
prerequisites: | ||
uses: ./.github/workflows/prerequisites.yml | ||
secrets: inherit | ||
with: | ||
default_branch: ${{ github.event.repository.default_branch }} | ||
is_pr: ${{ github.event_name == 'pull_request' }} | ||
is_automated: ${{ github.actor == 'dependabot[bot]' }} | ||
|
||
build_sdk: | ||
name: build_sdk | ||
needs: prerequisites | ||
uses: ./.github/workflows/build_sdk.yml | ||
secrets: inherit | ||
with: | ||
version: ${{ needs.prerequisites.outputs.version }} | ||
|
||
generate_coverage_data: | ||
continue-on-error: true | ||
|
@@ -88,17 +98,11 @@ jobs: | |
name: License Check | ||
uses: ./.github/workflows/license.yml | ||
secrets: inherit | ||
prerequisites: | ||
uses: ./.github/workflows/prerequisites.yml | ||
secrets: inherit | ||
with: | ||
default_branch: ${{ github.event.repository.default_branch }} | ||
is_pr: ${{ github.event_name == 'pull_request' }} | ||
is_automated: ${{ github.actor == 'dependabot[bot]' }} | ||
|
||
publish: | ||
name: publish | ||
needs: | ||
- prerequisites | ||
- test | ||
- license_check | ||
runs-on: ubuntu-latest | ||
|
@@ -137,13 +141,11 @@ jobs: | |
role-external-id: upload-pulumi-release | ||
role-session-name: slack@githubActions | ||
role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} | ||
- id: version | ||
uses: pulumi/provider-version-action@v1 | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
env: | ||
GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} | ||
PROVIDER_VERSION: ${{ steps.version.outputs.version }} | ||
GORELEASER_CURRENT_TAG: v${{ needs.prerequisites.outputs.version }} | ||
PROVIDER_VERSION: ${{ needs.prerequisites.outputs.version }} | ||
with: | ||
args: -p 3 -f .goreleaser.prerelease.yml --rm-dist --skip-validate --timeout | ||
60m0s | ||
|
@@ -157,16 +159,16 @@ jobs: | |
status: ${{ job.status }} | ||
publish_sdk: | ||
name: publish_sdk | ||
needs: publish | ||
needs: | ||
- prerequisites | ||
- publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: version | ||
uses: pulumi/provider-version-action@v1 | ||
- name: Publish SDKs | ||
uses: pulumi/[email protected] | ||
with: | ||
sdk: all | ||
version: ${{ steps.version.outputs.version }} | ||
version: ${{ needs.prerequisites.outputs.version }} | ||
dotnet-version: "6.0.x" | ||
java-version: "11" | ||
node-version: "20.x" | ||
|
@@ -202,17 +204,18 @@ jobs: | |
|
||
test: | ||
name: test | ||
needs: build_sdk | ||
needs: | ||
- prerequisites | ||
- build_sdk | ||
permissions: | ||
contents: read | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
env: | ||
PROVIDER_VERSION: ${{ needs.prerequisites.outputs.version }} | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
- uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: 'PROVIDER_VERSION' | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -21,11 +21,21 @@ env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
TF_APPEND_USER_AGENT: pulumi | ||
jobs: | ||
prerequisites: | ||
uses: ./.github/workflows/prerequisites.yml | ||
secrets: inherit | ||
with: | ||
default_branch: ${{ github.event.repository.default_branch }} | ||
is_pr: ${{ github.event_name == 'pull_request' }} | ||
is_automated: ${{ github.actor == 'dependabot[bot]' }} | ||
|
||
build_sdk: | ||
name: build_sdk | ||
needs: prerequisites | ||
uses: ./.github/workflows/build_sdk.yml | ||
secrets: inherit | ||
with: | ||
version: ${{ needs.prerequisites.outputs.version }} | ||
|
||
lint: | ||
name: lint | ||
|
@@ -35,17 +45,11 @@ jobs: | |
name: License Check | ||
uses: ./.github/workflows/license.yml | ||
secrets: inherit | ||
prerequisites: | ||
uses: ./.github/workflows/prerequisites.yml | ||
secrets: inherit | ||
with: | ||
default_branch: ${{ github.event.repository.default_branch }} | ||
is_pr: ${{ github.event_name == 'pull_request' }} | ||
is_automated: ${{ github.actor == 'dependabot[bot]' }} | ||
|
||
publish: | ||
name: publish | ||
needs: | ||
- prerequisites | ||
- test | ||
- license_check | ||
runs-on: ubuntu-latest | ||
|
@@ -84,13 +88,11 @@ jobs: | |
role-external-id: upload-pulumi-release | ||
role-session-name: slack@githubActions | ||
role-to-assume: ${{ secrets.AWS_UPLOAD_ROLE_ARN }} | ||
- id: version | ||
uses: pulumi/provider-version-action@v1 | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v5 | ||
env: | ||
GORELEASER_CURRENT_TAG: v${{ steps.version.outputs.version }} | ||
PROVIDER_VERSION: ${{ steps.version.outputs.version }} | ||
GORELEASER_CURRENT_TAG: v${{ needs.prerequisites.outputs.version }} | ||
PROVIDER_VERSION: ${{ needs.prerequisites.outputs.version }} | ||
with: | ||
args: -p 3 -f .goreleaser.prerelease.yml --rm-dist --skip-validate --timeout | ||
60m0s | ||
|
@@ -104,16 +106,16 @@ jobs: | |
status: ${{ job.status }} | ||
publish_sdk: | ||
name: publish_sdk | ||
needs: publish | ||
needs: | ||
- prerequisites | ||
- publish | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: version | ||
uses: pulumi/provider-version-action@v1 | ||
- name: Publish SDKs | ||
uses: pulumi/[email protected] | ||
with: | ||
sdk: all | ||
version: ${{ steps.version.outputs.version }} | ||
version: ${{ needs.prerequisites.outputs.version }} | ||
dotnet-version: "6.0.x" | ||
java-version: "11" | ||
node-version: "20.x" | ||
|
@@ -131,7 +133,9 @@ jobs: | |
uses: rtCamp/action-slack-notify@v2 | ||
publish_go_sdk: | ||
name: publish_go_sdk | ||
needs: publish_sdk | ||
needs: | ||
- prerequisites | ||
- publish_sdk | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repo | ||
|
@@ -141,8 +145,6 @@ jobs: | |
with: | ||
tag: v0.0.46 | ||
repo: pulumi/pulumictl | ||
- id: version | ||
uses: pulumi/provider-version-action@v1 | ||
- name: Download Go SDK | ||
uses: actions/download-artifact@v4 | ||
with: | ||
|
@@ -158,7 +160,7 @@ jobs: | |
base-ref: ${{ github.sha }} | ||
source: sdk | ||
path: sdk | ||
version: ${{ steps.version.outputs.version }} | ||
version: ${{ needs.prerequisites.outputs.version }} | ||
additive: false | ||
# Avoid including other language SDKs & artifacts in the commit | ||
files: | | ||
|
@@ -167,17 +169,18 @@ jobs: | |
!*.tar.gz | ||
test: | ||
name: test | ||
needs: build_sdk | ||
needs: | ||
- prerequisites | ||
- build_sdk | ||
permissions: | ||
contents: read | ||
id-token: write | ||
runs-on: ubuntu-latest | ||
env: | ||
PROVIDER_VERSION: ${{ needs.prerequisites.outputs.version }} | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
- uses: pulumi/provider-version-action@v1 | ||
with: | ||
set-env: 'PROVIDER_VERSION' | ||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
|
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
Oops, something went wrong.