Skip to content

Commit

Permalink
gh-actions: Bump internal versions (#945)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax authored Nov 5, 2023
1 parent c0b059b commit be9eef8
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 26 deletions.
6 changes: 3 additions & 3 deletions gh-actions/docker/cache/prime/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,20 @@ outputs:
runs:
using: "composite"
steps:
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
if: ${{ inputs.lock-app-id && inputs.lock-app-key }}
name: Fetch app auth
id: appauth
with:
app_id: ${{ inputs.lock-app-id }}
key: ${{ inputs.lock-app-key }}
- uses: envoyproxy/toolshed/gh-actions/github/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/github/[email protected].14
if: ${{ steps.appauth.outputs.token || inputs.lock-token }}
with:
key: ${{ inputs.lock-id || inputs.image_tag }}
repository: ${{ inputs.lock-repository }}
token: ${{ steps.appauth.outputs.token || inputs.lock-token }}
- uses: envoyproxy/toolshed/gh-actions/cache/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/cache/[email protected].14
id: prime
with:
key: "${{ inputs.image_tag }}"
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/docker/cache/restore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: envoyproxy/toolshed/gh-actions/cache/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/cache/[email protected].14
with:
key: ${{ inputs.image_tag }}
command: |
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/docker/fetch/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
id: fetch
with:
url: ${{ inputs.url }}
Expand Down
6 changes: 3 additions & 3 deletions gh-actions/docker/shas/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ outputs:
runs:
using: composite
steps:
- uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].14
id: yaml
with:
yaml: ${{ inputs.images }}
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
id: json_actions
with:
input: ${{ steps.yaml.outputs.json }}
filter: |
{runs: {using: "composite", steps: [to_entries[] | {
uses: "envoyproxy/toolshed/gh-actions/docker/[email protected].13",
uses: "envoyproxy/toolshed/gh-actions/docker/[email protected].14",
id: .key,
with: {
image: .value,
Expand Down
6 changes: 3 additions & 3 deletions gh-actions/github/checkout/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ runs:
steps:
- name: Fetch token for app auth
id: appauth
uses: envoyproxy/toolshed/gh-actions/[email protected].13
uses: envoyproxy/toolshed/gh-actions/[email protected].14
if: ${{ inputs.app_id && inputs.app_key }}
with:
app_id: ${{ inputs.app_id }}
key: ${{ inputs.app_key }}
- name: Parse YAML config
id: parsed
uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].13
uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].14
with:
yaml: ${{ inputs.config || '{}' }}
- name: Add auth token to config
id: config
if: ${{ steps.appauth.outputs.token }}
uses: envoyproxy/toolshed/gh-actions/[email protected].13
uses: envoyproxy/toolshed/gh-actions/[email protected].14
with:
input: ${{ steps.parsed.outputs.json }}
filter: |
Expand Down
14 changes: 7 additions & 7 deletions gh-actions/github/context/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,50 +24,50 @@ inputs:
runs:
using: composite
steps:
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Config
id: config
with:
input: ${{ inputs.resources }}
options: -Rs
filter: |
split("\n") | map(select(length > 0))
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print github
if: ${{ contains(fromJSON(steps.config.outputs.value), 'github') }}
with:
input: ${{ toJSON(github) }}
options: -C
print-result: true
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print runner
if: ${{ contains(fromJSON(steps.config.outputs.value), 'runner') }}
with:
input: ${{ toJSON(runner) }}
options: -C
print-result: true
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print job
if: ${{ contains(fromJSON(steps.config.outputs.value), 'job') }}
with:
input: ${{ inputs.job || toJSON(job) }}
options: -C
print-result: true
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print env
if: ${{ contains(fromJSON(steps.config.outputs.value), 'env') }}
with:
input: ${{ inputs.env || toJSON(env) }}
options: -C
print-result: true
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print env
if: ${{ contains(fromJSON(steps.config.outputs.value), 'needs') && inputs.needs }}
with:
input: ${{ inputs.needs }}
options: -C
print-result: true
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Print env
if: ${{ contains(fromJSON(steps.config.outputs.value), 'vars') && inputs.vars }}
with:
Expand Down
4 changes: 2 additions & 2 deletions gh-actions/github/env/load/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- name: Download environment data
id: download
uses: envoyproxy/toolshed/gh-actions/github/artifact/[email protected].13
uses: envoyproxy/toolshed/gh-actions/github/artifact/[email protected].14
with:
name: env
path: ${{ runner.temp }}
Expand All @@ -27,7 +27,7 @@ runs:
DATA=$(cat ${{ runner.temp }}/env.json)
printf 'data=%s' "${DATA}" >> $GITHUB_OUTPUT
shell: bash
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
id: toenv
with:
input: ${{ steps.data.outputs.data }}
Expand Down
4 changes: 2 additions & 2 deletions gh-actions/github/env/save/action.yml~
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
steps:
- name: Download environment data
id: download
uses: envoyproxy/toolshed/gh-actions/github/artifact/[email protected].13
uses: envoyproxy/toolshed/gh-actions/github/artifact/[email protected].14
with:
name: env
path: ${{ runner.temp }}
Expand All @@ -27,7 +27,7 @@ runs:
DATA=$(cat ${{ runner.temp }}/env.json)
echo "data=${DATA}" >> $GITHUB_OUTPUT
shell: bash
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
id: toenv
with:
input: ${{ steps.data.outputs.data }}
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/github/merge-commit/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ runs:
shell: bash
env:
URL: https://api.github.com/repos/${{ inputs.repository }}/pulls/${{ inputs.pr }}
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
id: jq
with:
input: ${{ steps.fetch.outputs.response }}
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/github/pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:
working-directory: ${{ inputs.working-directory }}
shell: bash
- name: Upload diff
uses: envoyproxy/toolshed/gh-actions/upload/[email protected].13
uses: envoyproxy/toolshed/gh-actions/upload/[email protected].14
if: ${{ inputs.diff-upload }}
with:
diff: HEAD^1
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/json/table/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ outputs:
runs:
using: composite
steps:
- uses: envoyproxy/toolshed/gh-actions/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/[email protected].14
name: Generate table
id: table
with:
Expand Down
2 changes: 1 addition & 1 deletion gh-actions/using/recurse/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
# .tmp.action/action.yml **must** be hardcoded

- uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].13
- uses: envoyproxy/toolshed/gh-actions/yaml/[email protected].14
id: yaml
with:
yaml: ${{ inputs.with }}
Expand Down

0 comments on commit be9eef8

Please sign in to comment.