Skip to content

Commit 2ffb29c

Browse files
authored
Update GitHub Actions workflows. (#1024)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit 9cf126a684dd2c81570b52dbf601fcf667eb8eb0.
1 parent f3c35ee commit 2ffb29c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,19 +66,19 @@ runs:
6666

6767
- name: Setup DotNet
6868
if: inputs.tools == 'all' || contains(inputs.tools, 'dotnet')
69-
uses: actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25 # v4
69+
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
7070
with:
7171
dotnet-version: 6.0.x
7272

7373
- name: Setup Python
7474
if: inputs.tools == 'all' || contains(inputs.tools, 'python')
75-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5
75+
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
7676
with:
7777
python-version: 3.11.8
7878

7979
- name: Setup Java
8080
if: inputs.tools == 'all' || contains(inputs.tools, 'java')
81-
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4
81+
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
8282
with:
8383
cache: gradle
8484
distribution: temurin

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

Lines changed: 1 addition & 1 deletion
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/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
16+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
1717
with:
1818
name: ${{ inputs.language }}-sdk.tar.gz
1919
path: ${{ github.workspace}}/sdk/${{ inputs.language }}.tar.gz

.github/workflows/build_provider.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: make provider_dist-${{ matrix.platform.os }}-${{ matrix.platform.arch }}
6767

6868
- name: Upload artifacts
69-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
69+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
7070
with:
7171
name: pulumi-resource-cloudflare-v${{ inputs.version }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}.tar.gz
7272
path: bin/pulumi-resource-cloudflare-v${{ inputs.version }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}.tar.gz

.github/workflows/prerequisites.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
- name: Unit-test provider code
7676
run: make test_provider
7777
- name: Upload coverage reports to Codecov
78-
uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1
78+
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # v5.1.2
7979
env:
8080
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8181
- if: inputs.is_pr
@@ -100,14 +100,14 @@ jobs:
100100
Maintainer note: consult the [runbook](https://github.com/pulumi/platform-providers-team/blob/main/playbooks/tf-provider-updating.md) for dealing with any breaking changes.
101101
102102
- name: Upload pulumi-tfgen-cloudflare
103-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
103+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
104104
with:
105105
name: pulumi-tfgen-cloudflare
106106
path: ${{ github.workspace }}/bin/pulumi-tfgen-cloudflare
107107
retention-days: 30
108108

109109
- name: Upload schema-embed.json
110-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
110+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
111111
with:
112112
name: schema-embed.json
113113
path: provider/cmd/pulumi-resource-cloudflare/schema-embed.json

0 commit comments

Comments
 (0)