Skip to content

Commit

Permalink
Update GitHub Actions workflows. (#2952)
Browse files Browse the repository at this point in the history
This PR was automatically generated by the
update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt
repo, from commit 9c407c3662f239fcff04660e0467b00c0806a0f4.
  • Loading branch information
pulumi-bot committed Nov 3, 2023
1 parent 8d8a922 commit 5d0f69c
Show file tree
Hide file tree
Showing 6 changed files with 94 additions and 1 deletion.
73 changes: 73 additions & 0 deletions .github/workflows/license.yml
@@ -0,0 +1,73 @@
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt

name: license_check

on:
workflow_call:
inputs: {}


env:
AWS_REGION: us-west-2
DOTNETVERSION: |
6.0.x
3.1.301
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GOVERSION: 1.21.x
JAVAVERSION: "11"
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODEVERSION: 20.x
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NUGET_PUBLISH_KEY: ${{ secrets.NUGET_PUBLISH_KEY }}
PUBLISH_REPO_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
PUBLISH_REPO_USERNAME: ${{ secrets.OSSRH_USERNAME }}
PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }}
PULUMI_API: https://api.pulumi-staging.io
PULUMI_GO_DEP_ROOT: ${{ github.workspace }}/..
PULUMI_LOCAL_NUGET: ${{ github.workspace }}/nuget
PULUMI_MISSING_DOCS_ERROR: true
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
PYTHONVERSION: "3.9"
SIGNING_KEY: ${{ secrets.JAVA_SIGNING_KEY }}
SIGNING_KEY_ID: ${{ secrets.JAVA_SIGNING_KEY_ID }}
SIGNING_PASSWORD: ${{ secrets.JAVA_SIGNING_PASSWORD }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
TF_APPEND_USER_AGENT: pulumi
TRAVIS_OS_NAME: linux

jobs:
license_check:
name: License Check
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
ref: ${{ env.PR_COMMIT_SHA }}
- name: Unshallow clone for tags
run: git fetch --prune --unshallow --tags
- name: Install Go
uses: actions/setup-go@v4
with:
cache-dependency-path: |
sdk/go.sum
go-version: 1.21.x
- run: make upstream
- uses: pulumi/license-check-action@main
with:
module-path: provider
ignore-modules: >-
github.com/aead/chacha20,
github.com/apache/arrow/go/v12,
github.com/apache/thrift/lib/go/thrift,
github.com/cloudflare/circl,
github.com/golang,
github.com/jmespath/go-jmespath,
github.com/klauspost/compress,
github.com/mattn/go-localereader,
github.com/modern-go/reflect2,
github.com/pierrec/lz4,
github.com/pjbgf/sha1cd,
github.com/pulumi,
github.com/segmentio/asm,
golang.org
5 changes: 5 additions & 0 deletions .github/workflows/master.yml
Expand Up @@ -185,6 +185,10 @@ jobs:
s3FullURI="s3://${{ secrets.S3_COVERAGE_BUCKET_NAME }}/summaries/${summaryName}"
aws s3 cp "${{ env.COVERAGE_OUTPUT_DIR }}/summary.json" "${s3FullURI}" --acl bucket-owner-full-control
license_check:
name: License Check
uses: ./.github/workflows/license.yml
secrets: inherit
prerequisites:
name: prerequisites
runs-on: ubuntu-latest
Expand Down Expand Up @@ -279,6 +283,7 @@ jobs:
name: publish
needs:
- test
- license_check
- go_test_shim
runs-on: pulumi-ubuntu-8core
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/prerelease.yml
Expand Up @@ -128,6 +128,10 @@ jobs:
- dotnet
- go
- java
license_check:
name: License Check
uses: ./.github/workflows/license.yml
secrets: inherit
prerequisites:
name: prerequisites
runs-on: ubuntu-latest
Expand Down Expand Up @@ -222,6 +226,7 @@ jobs:
name: publish
needs:
- test
- license_check
- go_test_shim
runs-on: pulumi-ubuntu-8core
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -141,6 +141,10 @@ jobs:
name: Dispatch Event
run: pulumictl create docs-build pulumi-${{ env.PROVIDER }}
"${GITHUB_REF#refs/tags/}"
license_check:
name: License Check
uses: ./.github/workflows/license.yml
secrets: inherit
prerequisites:
name: prerequisites
runs-on: ubuntu-latest
Expand Down Expand Up @@ -235,6 +239,7 @@ jobs:
name: publish
needs:
- test
- license_check
- go_test_shim
runs-on: pulumi-ubuntu-8core
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run-acceptance-tests.yml
Expand Up @@ -269,6 +269,7 @@ jobs:
! cancelled()
needs:
- test
- license_check
- go_test_shim
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -399,6 +400,10 @@ jobs:
- dotnet
- go
- java
license_check:
name: License Check
uses: ./.github/workflows/license.yml
secrets: inherit
go_test_shim:
name: Run test of provider shim
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .upgrade-config.yml
Expand Up @@ -4,5 +4,5 @@
upstream-provider-name: terraform-provider-aws
pulumi-infer-version: true
remove-plugins: true
pr-reviewers: pulumi/Providers,lukehoban
pr-reviewers: iwahbe # Team: pulumi/Providers
javaVersion: "v0.9.5"

0 comments on commit 5d0f69c

Please sign in to comment.