Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Bump google-github-actions/upload-cloud-storage from 0.8.0 to 1.0.3 #5674

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
credentials_json: ${{ secrets.GCP_BUCKET_SA }}
- name: Upload Artifacts to Staging Bucket
id: upload-artifacts-staging
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: ./artifacts
destination: tce-cli-plugins-staging
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release-bucket.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,26 +86,26 @@ jobs:
credentials_json: ${{ secrets.GCP_BUCKET_SA }}
- name: Upload TCE Artifacts to Staging Bucket
id: upload-artifacts-staging
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: ./artifacts
destination: tce-cli-plugins-staging
- name: Upload TCE Artifacts to Update Bucket
id: upload-tce-artifacts-update
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: ./artifacts
destination: tce-cli-plugins
- name: Upload TF Artifacts to Update Bucket
id: upload-tf-artifacts-update
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: /tmp/tce-scratch-space/tanzu-framework/artifacts
destination: tce-framework-cli-plugins/artifacts
parent: false
- name: Upload TF Admin Artifacts to Update Bucket
id: upload-tf-artifacts-admin-update
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: /tmp/tce-scratch-space/tanzu-framework/artifacts-admin
destination: tce-framework-cli-plugins-admin/artifacts-admin
Expand All @@ -117,20 +117,20 @@ jobs:
run: make prune-buckets
- name: Upload TCE Artifacts to Release Bucket
id: upload-tce-artifacts-release
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: ./artifacts
destination: tce-tanzu-cli-plugins
- name: Upload TF Artifacts to Release Bucket
id: upload-tf-artifacts-release
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: /tmp/tce-scratch-space/tanzu-framework/artifacts
destination: tce-tanzu-cli-framework/artifacts
parent: false
- name: Upload TF Artifacts-Admin to Release Bucket
id: upload-tf-artifacts-admin-release
uses: google-github-actions/upload-cloud-storage@v0.8.0
uses: google-github-actions/upload-cloud-storage@v1.0.3
with:
path: /tmp/tce-scratch-space/tanzu-framework/artifacts-admin
destination: tce-tanzu-cli-framework-admin/artifacts-admin
Expand Down