diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f7c139efc..4814d5e26 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -12,7 +12,7 @@ "actions/setup-conftest": "1.0.2", "actions/setup-argo": "1.0.2", "actions/generate-openapi-clients": "1.0.3", - "actions/push-to-gcs": "0.3.0", + "actions/push-to-gcs": "0.3.1", "actions/techdocs-rewrite-relative-links": "1.0.3", "actions/validate-policy-bot-config": "1.1.1", "actions/trigger-argo-workflow": "1.2.1", diff --git a/actions/push-to-gcs/CHANGELOG.md b/actions/push-to-gcs/CHANGELOG.md index 742f1bfa6..7f9f19dd0 100644 --- a/actions/push-to-gcs/CHANGELOG.md +++ b/actions/push-to-gcs/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.1](https://github.com/grafana/shared-workflows/compare/push-to-gcs/v0.3.0...push-to-gcs/v0.3.1) (2025-11-27) + + +### 🔧 Miscellaneous Chores + +* **deps:** update actions/checkout action to v5.0.1 ([#1541](https://github.com/grafana/shared-workflows/issues/1541)) ([773f5b1](https://github.com/grafana/shared-workflows/commit/773f5b1eb7b717c5c89a2718c1c4322a45f2ed7f)) +* **deps:** update actions/checkout action to v6 ([#1570](https://github.com/grafana/shared-workflows/issues/1570)) ([af4d9df](https://github.com/grafana/shared-workflows/commit/af4d9dfcfa9da2582544cd2a6e6dcf06e516f9ea)) + ## [0.3.0](https://github.com/grafana/shared-workflows/compare/push-to-gcs/v0.2.1...push-to-gcs/v0.3.0) (2025-10-03) diff --git a/actions/push-to-gcs/README.md b/actions/push-to-gcs/README.md index 84e47f11f..ea9ccbcf5 100644 --- a/actions/push-to-gcs/README.md +++ b/actions/push-to-gcs/README.md @@ -34,14 +34,14 @@ jobs: id: login-to-gcs # Upload a single file to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: file.txt environment: "dev" # Can be dev/prod (defaults to dev) # Upload a single file and apply a predefined ACL. See `predefinedAcl` for options. - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: file.txt @@ -49,28 +49,28 @@ jobs: environment: "dev" # Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/file.txt - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: . glob: "folder/file.txt" - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder glob: "file.txt" # Here are 2 equivalent statements to upload a single file WITHOUT its parent directory to the bucket root - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/file.txt parent: false - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder @@ -78,18 +78,18 @@ jobs: parent: false # Here are 2 equivalent statements to upload a directory with all subdirectories - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/ - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: . glob: "folder/**/*" # Specify a bucket prefix with `bucket_path` - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 name: upload-yaml-to-some-path with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} @@ -97,14 +97,14 @@ jobs: bucket_path: some-path/ # Upload all files of a type - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/ glob: "*.txt" # upload all files of a type recursively - - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.0 + - uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.3.1 with: bucket: ${{ steps.login-to-gcs.outputs.bucket }} path: folder/