mirror of
https://github.com/hassio-addons/addon-mopidy.git
synced 2025-05-04 19:41:46 +00:00
⬆️ Upgrade lock-threads workflow to 3.0.0 (#175)
This commit is contained in:
parent
ac949c1351
commit
7101a4381b
3 changed files with 28 additions and 28 deletions
6
.github/workflows/lock.yaml
vendored
6
.github/workflows/lock.yaml
vendored
|
@ -12,10 +12,10 @@ jobs:
|
||||||
name: 🔒 Lock closed issues and PRs
|
name: 🔒 Lock closed issues and PRs
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: dessant/lock-threads@v2.1.2
|
- uses: dessant/lock-threads@v3.0.0
|
||||||
with:
|
with:
|
||||||
github-token: ${{ github.token }}
|
github-token: ${{ github.token }}
|
||||||
issue-lock-inactive-days: "30"
|
issue-inactive-days: "30"
|
||||||
issue-lock-reason: ""
|
issue-lock-reason: ""
|
||||||
pr-lock-inactive-days: "1"
|
pr-inactive-days: "1"
|
||||||
pr-lock-reason: ""
|
pr-lock-reason: ""
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base/amd64:4.2.2
|
ARG BUILD_FROM=ghcr.io/hassio-addons/debian-base/amd64:5.1.1
|
||||||
# hadolint ignore=DL3006
|
# hadolint ignore=DL3006
|
||||||
FROM ${BUILD_FROM}
|
FROM ${BUILD_FROM}
|
||||||
|
|
||||||
|
@ -13,11 +13,11 @@ RUN \
|
||||||
apt-get update \
|
apt-get update \
|
||||||
\
|
\
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
dirmngr=2.2.12-1+deb10u1 \
|
dirmngr=2.2.27-2 \
|
||||||
gpg-agent=2.2.12-1+deb10u1 \
|
gpg-agent=2.2.27-2 \
|
||||||
gpg=2.2.12-1+deb10u1 \
|
gpg=2.2.27-2 \
|
||||||
nginx=1.14.2-2+deb10u4 \
|
nginx=1.18.0-6.1 \
|
||||||
git=1:2.20.1-2+deb10u3 \
|
git=1:2.30.2-1 \
|
||||||
\
|
\
|
||||||
&& curl -L https://apt.mopidy.com/mopidy.gpg | apt-key add - \
|
&& curl -L https://apt.mopidy.com/mopidy.gpg | apt-key add - \
|
||||||
&& curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \
|
&& curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \
|
||||||
|
@ -25,30 +25,30 @@ RUN \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
\
|
\
|
||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
libffi-dev=3.2.1-9 \
|
libffi-dev=3.3-6 \
|
||||||
libxml2-dev=2.9.4+dfsg1-7+deb10u2 \
|
libxml2-dev=2.9.10+dfsg-6.7 \
|
||||||
libxslt1-dev=1.1.32-2.2~deb10u1 \
|
libxslt1-dev=1.1.34-4 \
|
||||||
libasound2-dev=1.1.8-1 \
|
libasound2-dev=1.2.4-1.1 \
|
||||||
libspotify12=12.1.51-1 \
|
libspotify12=12.1.51-1 \
|
||||||
libspotify-dev=12.1.51-1 \
|
libspotify-dev=12.1.51-1 \
|
||||||
zlib1g-dev=1:1.2.11.dfsg-1 \
|
zlib1g-dev=1:1.2.11.dfsg-2 \
|
||||||
build-essential=12.6 \
|
build-essential=12.9 \
|
||||||
python3-dev=3.7.3-1 \
|
python3-dev=3.9.2-3 \
|
||||||
python3-gi=3.30.4-1 \
|
python3-gi=3.38.0-2 \
|
||||||
python3-gst-1.0=1.14.4-1+b1 \
|
python3-gst-1.0=1.18.3-1 \
|
||||||
gstreamer1.0-alsa=1.14.4-2+deb10u1 \
|
gstreamer1.0-alsa=1.18.4-2 \
|
||||||
gstreamer1.0-plugins-bad=1.14.4-1+deb10u2 \
|
gstreamer1.0-plugins-bad=1.18.4-3 \
|
||||||
gstreamer1.0-plugins-good=1.14.4-1+deb10u1 \
|
gstreamer1.0-plugins-good=1.18.4-2 \
|
||||||
gstreamer1.0-plugins-ugly=1.14.4-1+deb10u1 \
|
gstreamer1.0-plugins-ugly=1.18.4-2 \
|
||||||
gstreamer1.0-pulseaudio=1.14.4-1+deb10u1 \
|
gstreamer1.0-pulseaudio=1.18.4-2 \
|
||||||
\
|
\
|
||||||
&& curl https://bootstrap.pypa.io/get-pip.py | python3 \
|
&& curl https://bootstrap.pypa.io/get-pip.py | python3 \
|
||||||
&& pip3 install --no-cache-dir -r /tmp/requirements.txt \
|
&& pip3 install --no-cache-dir -r /tmp/requirements.txt \
|
||||||
\
|
\
|
||||||
&& find /usr/local/lib/python3.7/ -type d -name tests -depth -exec rm -rf {} \; \
|
&& find /usr/local \
|
||||||
&& find /usr/local/lib/python3.7/ -type d -name test -depth -exec rm -rf {} \; \
|
\( -type d -a -name test -o -name tests -o -name '__pycache__' \) \
|
||||||
&& find /usr/local/lib/python3.7/ -name __pycache__ -depth -exec rm -rf {} \; \
|
-o \( -type f -a -name '*.pyc' -o -name '*.pyo' \) \
|
||||||
&& find /usr/local/lib/python3.7/ -name "*.pyc" -depth -exec rm -f {} \; \
|
-exec rm -rf '{}' + \
|
||||||
\
|
\
|
||||||
&& apt-get purge -y --auto-remove \
|
&& apt-get purge -y --auto-remove \
|
||||||
dirmngr \
|
dirmngr \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"build_from": {
|
"build_from": {
|
||||||
"amd64": "ghcr.io/hassio-addons/debian-base/amd64:4.2.2"
|
"amd64": "ghcr.io/hassio-addons/debian-base/amd64:5.1.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue