Update first-party Pulumi dependencies (major) #441
Workflow file for this run
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
on: | |
pull_request: | |
name: PR test | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Login to Docker Hub as pulumi-bot | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- uses: ./.github/actions/run-self-hosted | |
timeout-minutes: 2 | |
env: | |
# When regenerating the license, create a restricted license. | |
# That is, create a license that has a max unit of just 1 unless | |
# otherwise required. | |
PULUMI_LICENSE_KEY: ${{ secrets.PULUMI_LICENSE_KEY }} | |
with: | |
compose-args: '-f ./quickstart-docker-compose/all-in-one/docker-compose.yml' | |
- name: Upload service log as artifact | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4 | |
if: ${{ always() }} | |
with: | |
name: service-log | |
path: ${{ env.SERVICE_LOG }} | |
overwrite: true | |