Skip to content

Commit 384111d

Browse files
authored
Update GitHub Actions workflows. (#4871)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit a78a1883f05f2a49cdce26557c97f3af2dc97094.
1 parent bd51234 commit 384111d

24 files changed

+85
-166
lines changed

.github/actions/download-bin/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: "composite"
66
steps:
77
- name: Download provider + tfgen binaries
8-
uses: actions/[email protected]
8+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
99
with:
1010
name: aws-provider.tar.gz
1111
path: ${{ github.workspace }}/bin

.github/actions/download-sdk/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
using: "composite"
1111
steps:
1212
- name: Download ${{ inputs.language }} SDK
13-
uses: actions/[email protected]
13+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
1414
with:
1515
name: ${{ inputs.language }}-sdk.tar.gz
1616
path: ${{ github.workspace}}/sdk/

.github/actions/setup-tools/action.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
steps:
2121
- name: Install Go
2222
if: inputs.tools == 'all' || contains(inputs.tools, 'go')
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
2424
with:
2525
go-version: "1.23.x"
2626
cache-dependency-path: |
@@ -30,52 +30,52 @@ runs:
3030
3131
- name: Install pulumictl
3232
if: inputs.tools == 'all' || contains(inputs.tools, 'pulumictl')
33-
uses: jaxxstorm/[email protected]
33+
uses: jaxxstorm/action-install-gh-release@71d17cb091aa850acb2a1a4cf87258d183eb941b # v1.11.0
3434
with:
3535
tag: v0.0.46
3636
repo: pulumi/pulumictl
3737

3838
- name: Install Pulumi CLI
3939
if: inputs.tools == 'all' || contains(inputs.tools, 'pulumicli')
40-
uses: pulumi/actions@v5
40+
uses: pulumi/actions@c7fad9e2f0b79653172b36538b8b34b3c0291952 # v6
4141
with:
4242
pulumi-version: "dev"
4343

4444
- name: Install Schema Tools
4545
if: inputs.tools == 'all' || contains(inputs.tools, 'schema-tools')
46-
uses: jaxxstorm/[email protected]
46+
uses: jaxxstorm/action-install-gh-release@71d17cb091aa850acb2a1a4cf87258d183eb941b # v1.11.0
4747
with:
4848
repo: pulumi/schema-tools
4949

5050
- name: Setup Node
5151
if: inputs.tools == 'all' || contains(inputs.tools, 'nodejs')
52-
uses: actions/setup-node@v4
52+
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
5353
with:
5454
node-version: 20.x
5555
registry-url: https://registry.npmjs.org
5656

5757
- name: Setup DotNet
5858
if: inputs.tools == 'all' || contains(inputs.tools, 'dotnet')
59-
uses: actions/setup-dotnet@v4
59+
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4
6060
with:
6161
dotnet-version: 6.0.x
6262

6363
- name: Setup Python
6464
if: inputs.tools == 'all' || contains(inputs.tools, 'python')
65-
uses: actions/setup-python@v5
65+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
6666
with:
6767
python-version: 3.11.8
6868

6969
- name: Setup Java
7070
if: inputs.tools == 'all' || contains(inputs.tools, 'java')
71-
uses: actions/setup-java@v4
71+
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
7272
with:
7373
cache: gradle
7474
distribution: temurin
7575
java-version: 11
7676

7777
- name: Setup Gradle
7878
if: inputs.tools == 'all' || contains(inputs.tools, 'java')
79-
uses: gradle/gradle-build-action@v3
79+
uses: gradle/gradle-build-action@ac2d340dc04d9e1113182899e983b5400c17cda1 # v3
8080
with:
8181
gradle-version: 7.6

.github/actions/upload-bin/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
shell: bash
99
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{ github.workspace }}/bin/ pulumi-resource-aws pulumi-tfgen-aws
1010
- name: Upload artifacts
11-
uses: actions/[email protected]
11+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
1212
with:
1313
name: aws-provider.tar.gz
1414
path: ${{ github.workspace }}/bin/provider.tar.gz

.github/actions/upload-sdk/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
shell: bash
1414
run: tar -zcf sdk/${{ inputs.language }}.tar.gz -C sdk/${{ inputs.language }} .
1515
- name: Upload artifacts
16-
uses: actions/[email protected]
16+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
1717
with:
1818
name: ${{ inputs.language }}-sdk.tar.gz
1919
path: ${{ github.workspace}}/sdk/${{ inputs.language }}.tar.gz

.github/workflows/build_provider.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
steps:
3232
# Run as first step so we don't delete things that have just been installed
3333
- name: Free Disk Space (Ubuntu)
34-
uses: jlumbroso/[email protected]
34+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
3535
with:
3636
tool-cache: false
3737
swap-storage: false
3838
dotnet: false
3939
- name: Checkout Repo
40-
uses: actions/[email protected]
40+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4141
with:
4242
submodules: true
4343
persist-credentials: false
@@ -48,19 +48,19 @@ jobs:
4848
- name: Prepare local workspace before restoring previously built
4949
run: make prepare_local_workspace
5050
- name: Download schema-embed.json
51-
uses: actions/[email protected]
51+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
5252
with:
5353
# Use a pattern to avoid failing if the artifact doesn't exist
5454
pattern: schema-embed.*
5555
# Avoid creating directories for each artifact
5656
merge-multiple: true
57-
path: provider/cmd/pulumi-resource-aws/schema-embed.json
57+
path: provider/cmd/pulumi-resource-aws
5858
- name: Restore makefile progress
5959
run: make --touch provider schema
6060
- name: Build & package provider
6161
run: make provider_dist-${{ matrix.platform.os }}-${{ matrix.platform.arch }}
6262
- name: Upload artifacts
63-
uses: actions/[email protected]
63+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
6464
with:
6565
name: pulumi-resource-aws-v${{ inputs.version }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}.tar.gz
6666
path: bin/pulumi-resource-aws-v${{ inputs.version }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}.tar.gz

.github/workflows/build_sdk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@ jobs:
4545
steps:
4646
# Run as first step so we don't delete things that have just been installed
4747
- name: Free Disk Space (Ubuntu)
48-
uses: jlumbroso/[email protected]
48+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
4949
with:
5050
tool-cache: false
5151
swap-storage: false
5252
dotnet: false
5353
- name: Checkout Repo
54-
uses: actions/[email protected]
54+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5555
with:
5656
submodules: true
5757
persist-credentials: false
5858
- name: Cache examples generation
59-
uses: actions/cache@v4
59+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
6060
with:
6161
path: |
6262
.pulumi/examples-cache

.github/workflows/command-dispatch.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout Repo
29-
uses: actions/[email protected]
29+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3030
with:
3131
submodules: true
3232
persist-credentials: false
33-
- uses: peter-evans/slash-command-dispatch@v4
33+
- uses: peter-evans/slash-command-dispatch@13bc09769d122a64f75aa5037256f6f2d78be8c4 # v4
3434
with:
3535
commands: |
3636
run-acceptance-tests

.github/workflows/community-moderation.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Repo
11-
uses: actions/[email protected]
11+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1212
with:
1313
submodules: true
1414
persist-credentials: false
1515
- id: schema_changed
1616
name: Check for diff in schema
17-
uses: dorny/paths-filter@v2.12.0
17+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
1818
with:
1919
filters: "changed: 'provider/cmd/**/schema.json'"
2020
- id: sdk_changed
2121
if: steps.schema_changed.outputs.changed == 'false'
2222
name: Check for diff in sdk/**
23-
uses: dorny/paths-filter@v2.12.0
23+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
2424
with:
2525
filters: "changed: 'sdk/**'"
2626
- if: steps.sdk_changed.outputs.changed == 'true' &&
2727
github.event.pull_request.head.repo.full_name != github.repository
2828
name: Send codegen warning as comment on PR
29-
uses: thollander/[email protected]
29+
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
3030
with:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3232
message: >

.github/workflows/license.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout Repo
36-
uses: actions/[email protected]
36+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
with:
3838
persist-credentials: false
3939
- name: Setup tools

.github/workflows/lint.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout Repo
36-
uses: actions/[email protected]
36+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
with:
3838
submodules: true
3939
persist-credentials: false
4040
- name: Install go
41-
uses: actions/setup-go@v5
41+
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
4242
with:
4343
# The versions of golangci-lint and setup-go here cross-depend and need to update together.
4444
go-version: 1.23
@@ -52,7 +52,7 @@ jobs:
5252
continue-on-error: true
5353
run: make upstream
5454
- name: golangci-lint
55-
uses: golangci/golangci-lint-action@v6
55+
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6
5656
with:
5757
version: v1.60
5858
working-directory: provider

.github/workflows/master.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ jobs:
5353
runs-on: ubuntu-latest
5454
steps:
5555
- name: Free Disk Space (Ubuntu)
56-
uses: jlumbroso/[email protected]
56+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
5757
with:
5858
tool-cache: false
5959
swap-storage: false
6060
- name: Checkout Repo
61-
uses: actions/[email protected]
61+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6262
with:
6363
submodules: true
6464
persist-credentials: false
6565
- name: Configure AWS Credentials
66-
uses: aws-actions/[email protected]
66+
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
6767
with:
6868
aws-access-key-id: ${{ secrets.AWS_CORP_S3_UPLOAD_ACCESS_KEY_ID }}
6969
aws-region: us-west-2
@@ -109,6 +109,7 @@ jobs:
109109
version: ${{ needs.prerequisites.outputs.version }}
110110
isPrerelease: true
111111
skipGoSdk: true
112+
skipJavaSdk: true
112113

113114
tag_release_if_labeled_needs_release:
114115
name: Tag release if labeled as needs-release
@@ -142,13 +143,13 @@ jobs:
142143
steps:
143144
# Run as first step so we don't delete things that have just been installed
144145
- name: Free Disk Space (Ubuntu)
145-
uses: jlumbroso/[email protected]
146+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
146147
with:
147148
tool-cache: false
148149
swap-storage: false
149150
dotnet: false
150151
- name: Checkout Repo
151-
uses: actions/[email protected]
152+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
152153
with:
153154
submodules: true
154155
persist-credentials: false

.github/workflows/nightly-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ jobs:
5858
steps:
5959
# Run as first step so we don't delete things that have just been installed
6060
- name: Free Disk Space (Ubuntu)
61-
uses: jlumbroso/[email protected]
61+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
6262
with:
6363
tool-cache: false
6464
swap-storage: false
6565
dotnet: false
6666
- name: Checkout Repo
67-
uses: actions/[email protected]
67+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6868
with:
6969
submodules: true
7070
persist-credentials: false

.github/workflows/prerelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ jobs:
8383
steps:
8484
# Run as first step so we don't delete things that have just been installed
8585
- name: Free Disk Space (Ubuntu)
86-
uses: jlumbroso/[email protected]
86+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
8787
with:
8888
tool-cache: false
8989
swap-storage: false
9090
dotnet: false
9191
- name: Checkout Repo
92-
uses: actions/[email protected]
92+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9393
with:
9494
submodules: true
9595
persist-credentials: false

.github/workflows/prerequisites.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -47,22 +47,22 @@ jobs:
4747
steps:
4848
# Run as first step so we don't delete things that have just been installed
4949
- name: Free Disk Space (Ubuntu)
50-
uses: jlumbroso/[email protected]
50+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
5151
with:
5252
tool-cache: false
5353
swap-storage: false
5454
dotnet: false
5555
- name: Checkout Repo
56-
uses: actions/[email protected]
56+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5757
with:
5858
submodules: true
5959
persist-credentials: false
60-
- uses: pulumi/provider-version-action@v1
60+
- uses: pulumi/provider-version-action@0391d47b9b0d865d33dd0a295b1fcf9f7021dd4c # v1.5.3
6161
id: provider-version
6262
with:
6363
set-env: 'PROVIDER_VERSION'
6464
- name: Cache examples generation
65-
uses: actions/cache@v4
65+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
6666
with:
6767
path: |
6868
.pulumi/examples-cache
@@ -90,7 +90,7 @@ jobs:
9090
} >> "$GITHUB_ENV"
9191
- if: inputs.is_pr && inputs.is_automated == false
9292
name: Comment on PR with Details of Schema Check
93-
uses: thollander/[email protected]
93+
uses: thollander/actions-comment-pull-request@fabd468d3a1a0b97feee5f6b9e499eab0dd903f6 # v2.5.0
9494
with:
9595
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9696
comment_tag: schemaCheck
@@ -104,7 +104,7 @@ jobs:
104104
uses: ./.github/actions/upload-bin
105105

106106
- name: Upload schema-embed.json
107-
uses: actions/[email protected]
107+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
108108
with:
109109
name: schema-embed.json
110110
path: provider/cmd/pulumi-resource-aws/schema-embed.json

0 commit comments

Comments
 (0)