Skip to content

Commit a4fe059

Browse files
chore(main): release push-to-gcs 0.2.2
1 parent cc1a0b6 commit a4fe059

File tree

3 files changed

+20
-13
lines changed

3 files changed

+20
-13
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"actions/setup-conftest": "1.0.2",
1313
"actions/setup-argo": "1.0.2",
1414
"actions/generate-openapi-clients": "1.0.2",
15-
"actions/push-to-gcs": "0.2.1",
15+
"actions/push-to-gcs": "0.2.2",
1616
"actions/techdocs-rewrite-relative-links": "1.0.2",
1717
"actions/validate-policy-bot-config": "1.1.1",
1818
"actions/trigger-argo-workflow": "1.1.1",

actions/push-to-gcs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.2](https://github.com/grafana/shared-workflows/compare/push-to-gcs/v0.2.1...push-to-gcs/v0.2.2) (2025-07-15)
4+
5+
6+
### 🐛 Bug Fixes
7+
8+
* remediate latest zizmor findings, fix supplying zizmor config ([#1101](https://github.com/grafana/shared-workflows/issues/1101)) ([712c599](https://github.com/grafana/shared-workflows/commit/712c59975bc0de22124b866153826f04023f18fd))
9+
310
## [0.2.1](https://github.com/grafana/shared-workflows/compare/push-to-gcs-v0.2.0...push-to-gcs/v0.2.1) (2025-06-04)
411

512

actions/push-to-gcs/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,77 +34,77 @@ jobs:
3434
id: login-to-gcs
3535

3636
# Upload a single file to the bucket root
37-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
37+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
3838
with:
3939
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
4040
path: file.txt
4141
environment: "dev" # Can be dev/prod (defaults to dev)
4242

4343
# Upload a single file and apply a predefined ACL. See `predefinedAcl` for options.
44-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
44+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
4545
with:
4646
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
4747
path: file.txt
4848
predefinedAcl: projectPrivate
4949
environment: "dev"
5050

5151
# Here are 3 equivalent statements to upload a single file and its parent directory to the bucket root
52-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
52+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
5353
with:
5454
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5555
path: folder/file.txt
56-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
56+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
5757
with:
5858
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
5959
path: .
6060
glob: "folder/file.txt"
61-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
61+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
6262
with:
6363
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
6464
path: folder
6565
glob: "file.txt"
6666

6767
# Here are 2 equivalent statements to upload a single file WITHOUT its parent directory to the bucket root
68-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
68+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
6969
with:
7070
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
7171
path: folder/file.txt
7272
parent: false
73-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
73+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
7474
with:
7575
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
7676
path: folder
7777
glob: "file.txt"
7878
parent: false
7979

8080
# Here are 2 equivalent statements to upload a directory with all subdirectories
81-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
81+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
8282
with:
8383
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8484
path: folder/
85-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
85+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
8686
with:
8787
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
8888
path: .
8989
glob: "folder/**/*"
9090

9191
# Specify a bucket prefix with `bucket_path`
92-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
92+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
9393
name: upload-yaml-to-some-path
9494
with:
9595
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
9696
path: file.txt
9797
bucket_path: some-path/
9898

9999
# Upload all files of a type
100-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
100+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
101101
with:
102102
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
103103
path: folder/
104104
glob: "*.txt"
105105

106106
# upload all files of a type recursively
107-
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.1
107+
- uses: grafana/shared-workflows/actions/push-to-gcs@push-to-gcs/v0.2.2
108108
with:
109109
bucket: ${{ steps.login-to-gcs.outputs.bucket }}
110110
path: folder/

0 commit comments

Comments
 (0)