From 92dbc31be3f8892f231cd9d2fb0f149fa393e15d Mon Sep 17 00:00:00 2001 From: Pulumi Bot Date: Thu, 9 Nov 2023 05:14:13 +0000 Subject: [PATCH] [internal] Update GitHub Actions workflow files --- .devcontainer/Dockerfile | 12 ++++++++++++ .devcontainer/devcontainer.json | 16 ++++++++++++++++ .github/workflows/command-dispatch.yml | 1 + .github/workflows/license.yml | 1 + .github/workflows/lint.yml | 1 + .github/workflows/master.yml | 5 +++-- .github/workflows/nightly-test.yml | 5 +++-- .github/workflows/prerelease.yml | 5 +++-- .github/workflows/pull-request.yml | 1 + .github/workflows/release.yml | 5 +++-- .github/workflows/resync-build.yml | 1 + .github/workflows/run-acceptance-tests.yml | 15 ++++++++------- devbox.json | 19 +++++++++++++++++++ 13 files changed, 72 insertions(+), 15 deletions(-) create mode 100644 .devcontainer/Dockerfile create mode 100644 .devcontainer/devcontainer.json create mode 100644 devbox.json diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000000..7d46cd8078 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,12 @@ +FROM jetpackio/devbox:latest + +# Installing your devbox project +WORKDIR /code +COPY devbox.json devbox.json +COPY devbox.lock devbox.lock +RUN sudo chown -R "${DEVBOX_USER}:${DEVBOX_USER}" /code + + +RUN devbox run -- echo "Installed Packages." + +RUN devbox shellenv --init-hook >> ~/.profile diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000000..e7ae9f11fe --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "Devbox Remote Container", + "build": { + "dockerfile": "./Dockerfile", + "context": ".." + }, + "customizations": { + "vscode": { + "settings": {}, + "extensions": [ + "jetpack-io.devbox" + ] + } + }, + "remoteUser": "devbox" +} \ No newline at end of file diff --git a/.github/workflows/command-dispatch.yml b/.github/workflows/command-dispatch.yml index 014c6bcac4..baad7508a6 100644 --- a/.github/workflows/command-dispatch.yml +++ b/.github/workflows/command-dispatch.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 6d6ee8b233..39f43bdfbf 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -19,6 +19,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d46222652a..2d3b10bbd3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,6 +18,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index b66dd98153..9ebf35458d 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -82,7 +83,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -398,7 +399,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/nightly-test.yml b/.github/workflows/nightly-test.yml index fed2a6bf29..52cb12fe0e 100644 --- a/.github/workflows/nightly-test.yml +++ b/.github/workflows/nightly-test.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -82,7 +83,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -258,7 +259,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index f5925e5f58..c79167de84 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -14,6 +14,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -83,7 +84,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -327,7 +328,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index b11b6ceac0..59bd40bcaa 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79143b5480..80f2227499 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -82,7 +83,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -373,7 +374,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/.github/workflows/resync-build.yml b/.github/workflows/resync-build.yml index 3fa3cafd99..35ab245b17 100644 --- a/.github/workflows/resync-build.yml +++ b/.github/workflows/resync-build.yml @@ -15,6 +15,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index 322f488341..24db1c76c9 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -14,6 +14,7 @@ env: 3.1.301 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GOVERSION: 1.21.x + GRADLEVERSION: "7.6" JAVAVERSION: "11" NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODEVERSION: 20.x @@ -87,7 +88,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: @@ -241,17 +242,17 @@ jobs: # # GitHub documents `jobs.result` as: # - # The result of a job in the reusable workflow. Possible values are success, - # failure, cancelled, or skipped. + # The result of a job in the reusable workflow. Possible values are success, + # failure, cancelled, or skipped. # # GitHub documents `cancelled()` as: # - # Returns true if the workflow was canceled. + # Returns true if the workflow was canceled. # # Combining these terms gives us an intuitive definition of success: # - # We have succeeded when no dependent workflow has failed and the job was - # not cancelled. + # We have succeeded when no dependent workflow has failed and the job was + # not cancelled. # if: (github.event_name == 'repository_dispatch' || github.event.pull_request.head.repo.full_name == github.repository) && @@ -321,7 +322,7 @@ jobs: - name: Setup Gradle uses: gradle/gradle-build-action@v2 with: - gradle-version: "7.6" + gradle-version: ${{ env.GRADLEVERSION }} - name: Download provider + tfgen binaries uses: actions/download-artifact@v2 with: diff --git a/devbox.json b/devbox.json new file mode 100644 index 0000000000..e10080eb15 --- /dev/null +++ b/devbox.json @@ -0,0 +1,19 @@ +{ + "packages": [ + "go@1.21.", + "nodejs@20.", + "python3@3.9", + "dotnet-sdk@6.0.", + "gradle_7@7.6" + ], + "shell": { + "init_hook": [ + "export PATH=\"$(pwd)/bin/:$PATH\"" + ], + "scripts": { + "test": [ + "echo \"Error: no test specified\" && exit 1" + ] + } + } +}