Skip to content

Commit d107d22

Browse files
authored
actions: Fix legacy versions (#3743)
Signed-off-by: Ryan Northey <ryan@synca.io>
1 parent 1451f96 commit d107d22

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

actions/envoy/ci/env/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ runs:
5252
steps:
5353

5454
# Check current/requested config (currently only build-images can be overridden)
55-
- uses: envoyproxy/toolshed/gh-actions/bson@8d755dc03183c15e2aca684309c5e4ffaa7afb15
55+
- uses: envoyproxy/toolshed/actions/bson@8d755dc03183c15e2aca684309c5e4ffaa7afb15
5656
id: config
5757
with:
5858
title: fetch ${{ inputs.branch-name }}:${{ inputs.config-file }}
@@ -70,7 +70,7 @@ runs:
7070
result-filter: .
7171

7272
- id: build-images
73-
uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
73+
uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
7474
with:
7575
input-format: yaml-path
7676
input: ${{ inputs.config-file }}
@@ -86,7 +86,7 @@ runs:
8686
| {$requested}
8787
8888
# Check request version
89-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
89+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
9090
name: Validate given version string
9191
id: version
9292
with:
@@ -105,7 +105,7 @@ runs:
105105
| {requested: .}
106106
107107
- id: request
108-
uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
108+
uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
109109
with:
110110
input: |
111111
actor: ${{ toJSON(github.actor) }}
@@ -138,12 +138,12 @@ runs:
138138
139139
- name: Run config
140140
id: run-config
141-
uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
141+
uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
142142
with:
143143
input-format: yaml
144144
input: ${{ toJSON(fromJSON(steps.config.outputs.output).run) }}
145145

146-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
146+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
147147
name: Create data
148148
id: data
149149
with:

actions/github/env/load/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636
using: composite
3737
steps:
3838
# For dispatch events we have to find the request via the Request workflow
39-
- uses: envoyproxy/toolshed/gh-actions/bson@8d755dc03183c15e2aca684309c5e4ffaa7afb15
39+
- uses: envoyproxy/toolshed/actions/bson@8d755dc03183c15e2aca684309c5e4ffaa7afb15
4040
name: Find request
4141
id: find-request
4242
if: ${{ inputs.head-sha }}
@@ -47,15 +47,15 @@ runs:
4747
| ("${{ inputs.template-script-current }}" | bash::output)
4848
- name: Download environment data
4949
id: download
50-
uses: envoyproxy/toolshed/gh-actions/github/artifact/download@8d755dc03183c15e2aca684309c5e4ffaa7afb15
50+
uses: envoyproxy/toolshed/actions/github/artifact/download@8d755dc03183c15e2aca684309c5e4ffaa7afb15
5151
with:
5252
name: ${{ inputs.name }}
5353
path: ${{ runner.temp }}
5454
run-id: ${{ steps.find-request.outputs.output || inputs.run-id }}
5555

5656
- name: Validate environment source
5757
if: ${{ github.event_name == 'workflow_run' }}
58-
uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
58+
uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
5959
with:
6060
input: |
6161
workflow_event: ${{ toJSON(github.event.workflow_run.event) }}
@@ -79,7 +79,7 @@ runs:
7979
else
8080
"✓ Environment source validation passed"
8181
end
82-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
82+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
8383
name: Load env data
8484
id: data
8585
with:

actions/github/env/save/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
# Create temporary directory
2121
OUTPUT_DIR=$(mktemp -d)
2222
echo "directory=${OUTPUT_DIR}" >> $GITHUB_OUTPUT
23-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
23+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
2424
name: Check proxy data
2525
id: env
2626
with:

actions/github/env/summary/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ outputs:
6161
runs:
6262
using: composite
6363
steps:
64-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
64+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
6565
id: linked-title
6666
with:
6767
input: |
@@ -76,7 +76,7 @@ runs:
7676
options: -r
7777
filter: gfm::event_title
7878

79-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
79+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
8080
id: title
8181
with:
8282
input: |
@@ -92,7 +92,7 @@ runs:
9292
filter: gfm::event_title
9393

9494
# This generates a filter from configuration
95-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
95+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
9696
name: Table filter
9797
id: table-filter
9898
with:
@@ -103,7 +103,7 @@ runs:
103103
filter: |
104104
with_entries({key: .key, value: .value.filter})
105105
| utils::filters
106-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
106+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
107107
name: Tables
108108
id: tables
109109
with:
@@ -121,7 +121,7 @@ runs:
121121
| select(.value.data | type != "null"))
122122
| gfm::tables
123123
124-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
124+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
125125
id: output
126126
with:
127127
input: ${{ toJSON(inputs) }}
@@ -160,7 +160,7 @@ runs:
160160
"
161161
| str::indent($inputs.indent // "0" | fromjson)
162162
163-
- uses: envoyproxy/toolshed/gh-actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
163+
- uses: envoyproxy/toolshed/actions/jq@8d755dc03183c15e2aca684309c5e4ffaa7afb15
164164
if: ${{ inputs.output-path }}
165165
with:
166166
input: ${{ steps.output.outputs.value }}

0 commit comments

Comments
 (0)