Skip to content

I tried to compile Localproxy but found that the underlying system supported is Debian12. Can I ask if Debian10 is supported or if there is a list of dependent package versions to help me install Localproxy #209

I tried to compile Localproxy but found that the underlying system supported is Debian12. Can I ask if Debian10 is supported or if there is a list of dependent package versions to help me install Localproxy

I tried to compile Localproxy but found that the underlying system supported is Debian12. Can I ask if Debian10 is supported or if there is a list of dependent package versions to help me install Localproxy #209

Workflow file for this run

name: GitHub Issue notifications
on: [issue_comment,issues]
env:
ACTION_NAME: ${{ github.event.action }}
EVENT_NAME: ${{ github.event_name }}
ISSUE_NUMBER: ${{ github.event.issue.number }}
ISSUE_TITLE: ${{ github.event.issue.title }}
jobs:
issue-notification:
runs-on: ubuntu-latest
steps:
- name: Send notifications on Slack
uses: slackapi/[email protected]
with:
payload: |
{
"action": "${{env.ACTION_NAME}}",
"eventName": "${{env.EVENT_NAME}}",
"issueNumber": "${{env.ISSUE_NUMBER}}"
}
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}