Updating runners to checkout
This commit is contained in:
@@ -10,21 +10,21 @@ jobs:
|
||||
dependency-update:
|
||||
runs-on: ubuntu-latest
|
||||
container: python:3.13-slim
|
||||
# skip if this is already a dependency update branch
|
||||
if: "!startsWith(github.ref, 'refs/heads/dependency-updates-')"
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
token: ${{ secrets.CI_TOKEN }}
|
||||
- name: Checkout
|
||||
run: |
|
||||
apt-get update -qq && apt-get install -y -qq git curl
|
||||
git clone ${{ github.server_url }}/${{ github.repository }} .
|
||||
git checkout ${{ github.sha }}
|
||||
|
||||
- name: Install system dependencies
|
||||
run: apt-get update -qq && apt-get install -y -qq libcap-dev git curl
|
||||
run: apt-get install -y -qq libcap-dev
|
||||
|
||||
- name: Install Poetry
|
||||
run: pip install poetry==2.1.1
|
||||
|
||||
- name: Install dependencies
|
||||
run: poetry install --without pi --no-interaction
|
||||
- name: Install Poetry and dependencies
|
||||
run: |
|
||||
pip install poetry==2.1.1
|
||||
poetry install --without pi --no-interaction
|
||||
|
||||
- name: Run dependency update check
|
||||
id: update
|
||||
@@ -40,7 +40,7 @@ jobs:
|
||||
CI_TOKEN: ${{ secrets.CI_TOKEN }}
|
||||
CI_SERVER_URL: ${{ secrets.CI_SERVER_URL }}
|
||||
REPO: ${{ github.repository }}
|
||||
ASSIGNEE_ID: ${{ secrets.CI_ASSIGNEE_ID }}
|
||||
CI_ASSIGNEE_ID: ${{ secrets.CI_ASSIGNEE_ID }}
|
||||
run: |
|
||||
chmod +x scripts/create_pr_gitea.sh
|
||||
bash scripts/create_pr_gitea.sh
|
||||
|
||||
Reference in New Issue
Block a user