Skip to content

Commit

Permalink
Updated deprecated actions. (#179)
Browse files Browse the repository at this point in the history
Signed-off-by: Gianni Trevisiol <gtrevi@microsoft.com>
  • Loading branch information
gtrevi authored Nov 3, 2022
1 parent b30f8e7 commit ee215c6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

- name: Generate the cache key
id: cache_key
run: echo ::set-output name=VALUE::platform-${{ inputs.platform }}_arch=${{ inputs.arch }}_type-${{ inputs.build_type }}_sanitizers-${{ inputs.enable_sanitizers }}_coverage-${{ inputs.enable_coverage }}_scan_build-${{ inputs.scan_build }}
run: echo "VALUE=platform-${{ inputs.platform }}_arch=${{ inputs.arch }}_type-${{ inputs.build_type }}_sanitizers-${{ inputs.enable_sanitizers }}_coverage-${{ inputs.enable_coverage }}_scan_build-${{ inputs.scan_build }}" >> $GITHUB_OUTPUT

- name: Update the cache (ccache)
uses: actions/cache@v3.0.11
Expand Down Expand Up @@ -277,9 +277,9 @@ jobs:
id: package_locations
if: inputs.upload_packages == true
run: |
echo ::set-output name=REL_DEB_PACKAGE_PATH::$(ls build/*.deb)
echo ::set-output name=REL_RPM_PACKAGE_PATH::$(ls build/*.rpm)
echo ::set-output name=REL_TGZ_PACKAGE_PATH::$(ls build/*.tar.gz)
echo "REL_DEB_PACKAGE_PATH=$(ls build/*.deb)" >> $GITHUB_OUTPUT
echo "REL_RPM_PACKAGE_PATH=$(ls build/*.rpm)" >> $GITHUB_OUTPUT
echo "REL_TGZ_PACKAGE_PATH=$(ls build/*.tar.gz)" >> $GITHUB_OUTPUT
- name: Upload the DEB package
if: inputs.upload_packages == true && inputs.platform == 'ubuntu-20.04'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
if: inputs.upload_packages == true
shell: bash
run: |
echo ::set-output name=REL_TGZ_PACKAGE_PATH::$(ls build/*.tar.gz)
echo "REL_TGZ_PACKAGE_PATH=$(ls build/*.tar.gz)" >> $GITHUB_OUTPUT
- name: Upload the Windows TGZ package
if: inputs.upload_packages == true
Expand Down

0 comments on commit ee215c6

Please sign in to comment.