diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9e0225..e2525e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,10 @@ jobs: shell: bash steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} @@ -55,19 +55,19 @@ jobs: - name: Cache pip id: cache-pip - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir }} key: pip|${{ runner.os }}|3.12|${{ hashFiles('**/setup.cfg') }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 id: cache-npm with: path: node_modules key: ${{ runner.os }}-npm-${{ hashFiles('package*.json') }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 if: steps.cache-npm.outputs.cache-hit != 'true' with: node-version: '18.x' @@ -85,7 +85,7 @@ jobs: run: tar cf /tmp/env.tar .venv node_modules - name: Upload environment - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: environment retention-days: 1 @@ -100,20 +100,20 @@ jobs: shell: bash steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18.x' - name: Download environment - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: environment path: /tmp @@ -176,20 +176,20 @@ jobs: - plugin: prometheus steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ env.PYTHON_VERSION }} - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: '18.x' - name: Download environment - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: environment path: /tmp