Skip to content

Commit

Permalink
Update external action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ehfd authored Nov 28, 2022
1 parent cbcfc6e commit 04bfb65
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_publish_changed_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Check for changes to image source
id: check
uses: tj-actions/changed-files@v1.1.2
uses: tj-actions/changed-files@v34
with:
files: ${{ matrix.source_files_for_diff }}

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:

- id: check
name: Check for changes to ${{ matrix.name }} image source
uses: tj-actions/changed-files@v1.1.2
uses: tj-actions/changed-files@v34
with:
files: ${{ matrix.source_files_for_diff }}

Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/publish_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- id: get
env:
RELEASE_VERSION: ${{ github.ref_name }}
run: echo "semver=${RELEASE_VERSION/v/}" >> $GITHUB_OUTPUT
run: echo semver=${RELEASE_VERSION/v/} >> $GITHUB_OUTPUT

# Note: When modifying this job, copy modifications to all other workflows' image jobs.
all_component_images:
Expand Down Expand Up @@ -221,12 +221,12 @@ jobs:
docker rm copy
gsutil cp $TARGET_PATH ${{ matrix.upload_bucket_path }}
echo "${{ matrix.id }}_cache_key=${{ matrix.cache_key }}" >> $GITHUB_OUTPUT
echo "${{ matrix.id }}_mimetype=${{ matrix.mimetype }}" >> $GITHUB_OUTPUT
echo "${{ matrix.id }}_name=${{ matrix.target_name }}" >> $GITHUB_OUTPUT
echo "${{ matrix.id }}_path=$TARGET_PATH" >> $GITHUB_OUTPUT
echo ${{ matrix.id }}_cache_key=${{ matrix.cache_key }} >> $GITHUB_OUTPUT
echo ${{ matrix.id }}_mimetype=${{ matrix.mimetype }} >> $GITHUB_OUTPUT
echo ${{ matrix.id }}_name=${{ matrix.target_name }} >> $GITHUB_OUTPUT
echo ${{ matrix.id }}_path=$TARGET_PATH >> $GITHUB_OUTPUT
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
key: ${{ matrix.cache_key }}
path: ${{ matrix.target_directory }}/${{ matrix.target_name }}
Expand All @@ -239,31 +239,31 @@ jobs:
- all_assets
steps:
- name: Ubuntu 18.04 cache read
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ needs.all_assets.outputs.gst18_cache_key }}
path: ${{ needs.all_assets.outputs.gst18_path }}

- name: Ubuntu 20.04 cache read
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ needs.all_assets.outputs.gst20_cache_key }}
path: ${{ needs.all_assets.outputs.gst20_path }}

- name: Ubuntu 22.04 cache read
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ needs.all_assets.outputs.gst22_cache_key }}
path: ${{ needs.all_assets.outputs.gst22_path }}

- name: Python cache read
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ needs.all_assets.outputs.py_cache_key }}
path: ${{ needs.all_assets.outputs.py_path }}

- name: Web cache read
uses: actions/cache@v2
uses: actions/cache@v3
with:
key: ${{ needs.all_assets.outputs.web_cache_key }}
path: ${{ needs.all_assets.outputs.web_path }}
Expand Down

0 comments on commit 04bfb65

Please sign in to comment.