diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8585944c6..9dd8413ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,19 +35,19 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Setup Node.js runtime + - name: Set up Node.js runtime uses: actions/setup-node@v1 with: python-version: ${{ env.NODE_VERSION }} - - name: Setup Node.js dependency cache + - name: Set up Node.js dependency cache uses: actions/cache@v2 id: cache with: path: node_modules key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} - - name: Setup Node.js dependencies + - name: Set up Node.js dependencies if: steps.cache.outputs.cache-hit != 'true' run: npm install diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index ba362bb99..4687239f4 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -36,7 +36,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Setup Python runtime + - name: Set up Python runtime uses: actions/setup-python@v1 with: python-version: ${{ env.PYTHON_VERSION }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c97ff7f91..98ee3c424 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,12 +37,12 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 - - name: Setup Python runtime + - name: Set up Python runtime uses: actions/setup-python@v1 with: python-version: ${{ env.PYTHON_VERSION }} - - name: Setup Python dependencies + - name: Set up Python dependencies run: pip install --upgrade setuptools wheel twine - name: Build Python package