Skip to content

Commit 66708be

Browse files
actions: Release v0.4.8 (#4042)
Signed-off-by: publish-envoy[bot] <140627008+publish-envoy[bot]@users.noreply.github.com> Co-authored-by: publish-envoy[bot] <140627008+publish-envoy[bot]@users.noreply.github.com>
1 parent 1ea9136 commit 66708be

45 files changed

Lines changed: 137 additions & 137 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

actions/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.8-dev
1+
0.4.8

actions/azp/agent-cleanup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ runs:
2121

2222
- id: fetch
2323
name: Fetch AZP agents list
24-
uses: envoyproxy/toolshed/actions/fetch@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
24+
uses: envoyproxy/toolshed/actions/fetch@1ea9136641b2851728e11925cedf9471d6de7173
2525
with:
2626
url: https://dev.azure.com/${{ inputs.azp-org }}/_apis/distributedtask/pools/${{ inputs.pool-id }}/agents?api-version=7.1-preview.1
2727
args: -u ":${{ inputs.azp-token }}"
2828

2929
- name: Get dead AZP agent ids
30-
uses: envoyproxy/toolshed/actions/jq@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
30+
uses: envoyproxy/toolshed/actions/jq@1ea9136641b2851728e11925cedf9471d6de7173
3131
with:
3232
input-format: json-path
3333
input: ${{ steps.fetch.outputs.path }}

actions/bind-mounts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
using: composite
2424
steps:
2525
- name: Bind mount directories
26-
uses: envoyproxy/toolshed/actions/bson@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
26+
uses: envoyproxy/toolshed/actions/bson@1ea9136641b2851728e11925cedf9471d6de7173
2727
id: mount
2828
with:
2929
input: ${{ inputs.mounts }}

actions/bson/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ runs:
4848
chmod +x $TMPFILE
4949
echo "path=$TMPFILE" >> $GITHUB_OUTPUT
5050
shell: bash
51-
- uses: envoyproxy/toolshed/actions/jq@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
51+
- uses: envoyproxy/toolshed/actions/jq@1ea9136641b2851728e11925cedf9471d6de7173
5252
id: command
5353
with:
5454
input: ${{ inputs.input }}
@@ -76,7 +76,7 @@ runs:
7676
TMPFILE: ${{ steps.script.outputs.path }}
7777
shell: bash
7878
- id: output
79-
uses: envoyproxy/toolshed/actions/jq@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
79+
uses: envoyproxy/toolshed/actions/jq@1ea9136641b2851728e11925cedf9471d6de7173
8080
if: ${{ inputs.result-filter }}
8181
with:
8282
input: ${{ steps.run.outputs.output }}

actions/buildah/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ runs:
6565
echo '${{ inputs.gcr-key }}' | base64 -d | buildah login --username _json_key --password-stdin gcr.io
6666
echo "::endgroup::"
6767
- name: Execute buildah operations
68-
uses: envoyproxy/toolshed/actions/bson@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
68+
uses: envoyproxy/toolshed/actions/bson@1ea9136641b2851728e11925cedf9471d6de7173
6969
id: execute
7070
with:
7171
title: Execute buildah operations

actions/cache/prime/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ runs:
7373
id: gcs-object
7474
if: >-
7575
inputs.cache-type == 'gcs'
76-
uses: envoyproxy/toolshed/actions/gcs/cache/exists@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
76+
uses: envoyproxy/toolshed/actions/gcs/cache/exists@1ea9136641b2851728e11925cedf9471d6de7173
7777
with:
7878
bucket: ${{ inputs.gcs-bucket }}
7979
key: ${{ inputs.key }}
8080
- name: Check artifact cache
8181
id: artifact-object
8282
if: >-
8383
inputs.cache-type == 'artifact'
84-
uses: envoyproxy/toolshed/actions/github/artifact/cache/id@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
84+
uses: envoyproxy/toolshed/actions/github/artifact/cache/id@1ea9136641b2851728e11925cedf9471d6de7173
8585
with:
8686
name: ${{ inputs.key }}
8787
wf-path: ${{ inputs.artifact-wf-path }}
@@ -97,7 +97,7 @@ runs:
9797
key: ${{ inputs.key }}
9898

9999
# Mutex
100-
- uses: envoyproxy/toolshed/actions/jq@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
100+
- uses: envoyproxy/toolshed/actions/jq@1ea9136641b2851728e11925cedf9471d6de7173
101101
if: >-
102102
! inputs.lock-id
103103
&& steps.cache-restore-initial.outputs.cache-hit != 'true'
@@ -109,7 +109,7 @@ runs:
109109
options: -Rr
110110
filter: |
111111
@base64
112-
- uses: envoyproxy/toolshed/actions/github/mutex@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
112+
- uses: envoyproxy/toolshed/actions/github/mutex@1ea9136641b2851728e11925cedf9471d6de7173
113113
if: >-
114114
inputs.lock-token
115115
&& steps.cache-restore-initial.outputs.cache-hit != 'true'
@@ -137,7 +137,7 @@ runs:
137137
if: >-
138138
inputs.cache-type == 'artifact'
139139
&& steps.artifact-object.outputs.exists == ''
140-
uses: envoyproxy/toolshed/actions/github/artifact/cache/id@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
140+
uses: envoyproxy/toolshed/actions/github/artifact/cache/id@1ea9136641b2851728e11925cedf9471d6de7173
141141
with:
142142
name: ${{ inputs.key }}
143143
wf-path: ${{ inputs.artifact-wf-path }}
@@ -146,7 +146,7 @@ runs:
146146
if: >-
147147
inputs.cache-type == 'gcs'
148148
&& steps.gcs-object.outputs.exists != 'true'
149-
uses: envoyproxy/toolshed/actions/gcs/cache/exists@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
149+
uses: envoyproxy/toolshed/actions/gcs/cache/exists@1ea9136641b2851728e11925cedf9471d6de7173
150150
with:
151151
bucket: ${{ inputs.gcs-bucket }}
152152
key: ${{ inputs.key }}
@@ -214,7 +214,7 @@ runs:
214214
- if: >-
215215
steps.restore.outputs.save == 'true'
216216
&& inputs.gcs-bucket
217-
uses: envoyproxy/toolshed/actions/gcs/cache/save@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
217+
uses: envoyproxy/toolshed/actions/gcs/cache/save@1ea9136641b2851728e11925cedf9471d6de7173
218218
with:
219219
bucket: ${{ inputs.gcs-bucket }}
220220
key: ${{ inputs.key }}
@@ -224,7 +224,7 @@ runs:
224224
if: >-
225225
steps.restore.outputs.save == 'true'
226226
&& inputs.cache-type == 'artifact'
227-
uses: envoyproxy/toolshed/actions/github/artifact/cache/save@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
227+
uses: envoyproxy/toolshed/actions/github/artifact/cache/save@1ea9136641b2851728e11925cedf9471d6de7173
228228
with:
229229
name: ${{ inputs.artifact-name }}
230230
path: ${{ inputs.path || inputs.path-tmp }}

actions/cache/restore/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ runs:
7272
if: >-
7373
inputs.cache-type == 'gcs'
7474
id: cache-restore-gcs
75-
uses: envoyproxy/toolshed/actions/gcs/cache/restore@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
75+
uses: envoyproxy/toolshed/actions/gcs/cache/restore@1ea9136641b2851728e11925cedf9471d6de7173
7676
with:
7777
bucket: ${{ inputs.gcs-bucket }}
7878
path: ${{ inputs.path || inputs.path-tmp }}
@@ -81,7 +81,7 @@ runs:
8181
if: >-
8282
inputs.cache-type == 'artifact'
8383
id: cache-restore-artifact
84-
uses: envoyproxy/toolshed/actions/github/artifact/cache/restore@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
84+
uses: envoyproxy/toolshed/actions/github/artifact/cache/restore@1ea9136641b2851728e11925cedf9471d6de7173
8585
with:
8686
id: ${{ inputs.artifact-id }}
8787
name: ${{ inputs.artifact-name }}

actions/docker/cache/prime/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ outputs:
2121
runs:
2222
using: "composite"
2323
steps:
24-
- uses: envoyproxy/toolshed/actions/cache/prime@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
24+
- uses: envoyproxy/toolshed/actions/cache/prime@1ea9136641b2851728e11925cedf9471d6de7173
2525
id: prime
2626
with:
2727
key: ${{ inputs.image-tag }}${{ inputs.key-suffix }}

actions/docker/cache/restore/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
runs:
1919
using: "composite"
2020
steps:
21-
- uses: envoyproxy/toolshed/actions/cache/restore@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
21+
- uses: envoyproxy/toolshed/actions/cache/restore@1ea9136641b2851728e11925cedf9471d6de7173
2222
with:
2323
key: ${{ inputs.image-tag }}${{ inputs.key-suffix }}
2424
command: |

actions/docker/fetch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ inputs:
1313
runs:
1414
using: "composite"
1515
steps:
16-
- uses: envoyproxy/toolshed/actions/fetch@444b7d08e6a5d81780c458c9ad9bb0305939f7ba
16+
- uses: envoyproxy/toolshed/actions/fetch@1ea9136641b2851728e11925cedf9471d6de7173
1717
id: fetch
1818
with:
1919
url: ${{ inputs.url }}

0 commit comments

Comments
 (0)