From 5b7b3d87e00b408ab5c8ecf6a1547c3e5499083e Mon Sep 17 00:00:00 2001 From: alaviss Date: Fri, 21 Apr 2023 02:59:04 -0500 Subject: [PATCH] update download-artifact (#3) Mainly to test the new actions --- .github/actions/download-compiler/action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/actions/download-compiler/action.yml b/.github/actions/download-compiler/action.yml index 4dfa4f5ceb7..661946fb624 100644 --- a/.github/actions/download-compiler/action.yml +++ b/.github/actions/download-compiler/action.yml @@ -4,17 +4,17 @@ inputs: workspace: description: Where to extract the compiler required: false - default: '.' + default: "." runs: - using: 'composite' + using: "composite" steps: - - uses: actions/download-artifact@v3.0.0 + - uses: actions/download-artifact@v3.0.2 with: name: compiler ${{ runner.os }} - path: '${{ runner.temp }}' + path: "${{ runner.temp }}" - name: Unpack the workspace run: tar xf '${{ runner.temp }}/compiler.tar' shell: bash - working-directory: '${{ inputs.workspace }}' + working-directory: "${{ inputs.workspace }}"