diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b5385e4..8002412 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: name: Find Trailing Whitespace runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Find Trailing Whitespace run: | set +e @@ -28,8 +28,7 @@ jobs: name: Generate python files from ui runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2.4.0 - + - uses: actions/checkout@v4 - name: Remove broken apt repos [Ubuntu] run: | for apt_file in `grep -lr microsoft /etc/apt/sources.list.d/`; do sudo rm $apt_file; done @@ -42,7 +41,7 @@ jobs: bash ./generate-ui.sh - name: Archive artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: autogenerated_files path: robot_log_visualizer/ui/autogenerated @@ -52,7 +51,7 @@ jobs: needs: [build] if: github.ref == 'refs/heads/main' steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v4 - name: Download artifacts uses: actions/download-artifact@v2 @@ -60,6 +59,6 @@ jobs: name: autogenerated_files path: robot_log_visualizer/ui/autogenerated - name: Deploy - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: ⚙️ Automatic update of the python UI classes diff --git a/.github/workflows/pypi-ci.yml b/.github/workflows/pypi-ci.yml index 24470b4..f2fd96a 100644 --- a/.github/workflows/pypi-ci.yml +++ b/.github/workflows/pypi-ci.yml @@ -40,7 +40,7 @@ jobs: run: python -m build --sdist --wheel --outdir dist/ . - name: Archive artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -54,7 +54,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dist path: dist @@ -74,7 +74,7 @@ jobs: steps: - name: Download artifacts - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: dist path: dist