Skip to content

Commit f596bec

Browse files
authored
chore: update s6, piaware, dump1090 and adsbxchange (#112)
* chore: update s6, piaware, dump1090 and adsbxchange * chore(ci): move out of set-output * chore(ci): update docker login action version
1 parent 1d218f9 commit f596bec

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
restore-keys: |
6767
all-buildx-
6868
- name: Login to DockerHub
69-
uses: docker/login-action@v1
69+
uses: docker/login-action@v2
7070
with:
7171
username: ${{ secrets.DOCKERHUB_USERNAME }}
7272
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -83,7 +83,7 @@ jobs:
8383
[ "$VERSION" == "master" ] && TAGS=$IMAGE_NAME:latest
8484
[ "$VERSION" != "master" ] && TAGS=$IMAGE_NAME:$VERSION,$IMAGE_NAME:latest
8585
echo TAGS=$TAGS
86-
echo "::set-output name=tags::$TAGS"
86+
echo "tags=$TAGS" >> $GITHUB_OUTPUT
8787
- name: Build and push
8888
uses: docker/build-push-action@v3
8989
with:

.github/workflows/pull-request-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Get commit
4141
id: get_commit
4242
run: |
43-
echo "::set-output name=sha_short::$(git rev-parse HEAD)"
43+
echo "sha_short=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
4444
- name: Set up QEMU
4545
uses: docker/setup-qemu-action@v2
4646
- name: Set up Docker Buildx
@@ -76,7 +76,7 @@ jobs:
7676
- name: Get commit
7777
id: get_commit
7878
run: |
79-
echo "::set-output name=sha_short::$(git rev-parse HEAD)"
79+
echo "sha_short=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
8080
- name: Set up QEMU
8181
uses: docker/setup-qemu-action@v2
8282
- name: Set up Docker Buildx
@@ -89,7 +89,7 @@ jobs:
8989
restore-keys: |
9090
all-buildx-
9191
- name: Login to DockerHub
92-
uses: docker/login-action@v1
92+
uses: docker/login-action@v2
9393
with:
9494
username: ${{ secrets.DOCKERHUB_USERNAME }}
9595
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898
run: |
9999
TAGS=$IMAGE_NAME:PR-${{ github.event.issue.number }}
100100
echo TAGS=$TAGS
101-
echo "::set-output name=tags::$TAGS"
101+
echo "tags=$TAGS" >> $GITHUB_OUTPUT
102102
- name: Build and push
103103
uses: docker/build-push-action@v3
104104
with:

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:bullseye as dump1090
22

3-
ENV DUMP1090_VERSION v7.2
3+
ENV DUMP1090_VERSION v8.2
44

55
# DUMP1090
66
RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN git clone -b ${DUMP1090_VERSION} --depth 1 https://github.com/flightaware/du
2626
FROM debian:bullseye as piaware
2727

2828
ENV DEBIAN_VERSION bullseye
29-
ENV PIAWARE_VERSION v7.2
29+
ENV PIAWARE_VERSION v8.2
3030

3131
# PIAWARE
3232
WORKDIR /tmp
@@ -110,7 +110,7 @@ RUN set -x && \
110110
SRCTMP=/srctmp && \
111111
# readsb as a feed client
112112
URL=https://github.com/adsbxchange/readsb && \
113-
COMMIT=eb03e9324fd91f1cf563966ed033fe759b05ed97 && \
113+
COMMIT=a25f8ea9c8427ad1bea82f244b7967ac8cd3153f && \
114114
mkdir -p $SRCTMP && wget -O ${SRCTMP}.tar.gz ${URL}/archive/${COMMIT}.tar.gz && tar xf ${SRCTMP}.tar.gz -C ${SRCTMP} --strip-components=1 && \
115115
pushd ${SRCTMP} && \
116116
echo "$COMMIT" > READSB_VERSION && \
@@ -121,7 +121,7 @@ RUN set -x && \
121121
rm -rf ${SRCTMP} ${SRCTMP}.tar.gz && \
122122
# mlat-client
123123
URL=https://github.com/adsbxchange/mlat-client &&\
124-
COMMIT=55fcde6fcf4216a33006e40ad17dbb924d65f6df && \
124+
COMMIT=faf9638fe8c2eafc2abdc45621ff879c7acb882b && \
125125
mkdir -p $SRCTMP && wget -O ${SRCTMP}.tar.gz ${URL}/archive/${COMMIT}.tar.gz && tar xf ${SRCTMP}.tar.gz -C ${SRCTMP} --strip-components=1 && \
126126
pushd ${SRCTMP} && \
127127
VENV="/usr/local/share/adsbexchange/venv" && \
@@ -135,7 +135,7 @@ RUN set -x && \
135135
rm -rf ${SRCTMP} ${SRCTMP}.tar.gz && \
136136
# adsbexchange-stats
137137
URL=https://github.com/adsbxchange/adsbexchange-stats && \
138-
COMMIT=471028b0407669f839583ae83e055bdc48505eb4 && \
138+
COMMIT=ca7e433b14e2e4226d579dca7e8a512bcd94726b && \
139139
mkdir -p $SRCTMP && wget -O ${SRCTMP}.tar.gz ${URL}/archive/${COMMIT}.tar.gz && tar xf ${SRCTMP}.tar.gz -C ${SRCTMP} --strip-components=1 && \
140140
cp -v -T ${SRCTMP}/json-status /usr/local/share/adsbexchange/json-status && \
141141
rm -rf ${SRCTMP} ${SRCTMP}.tar.gz && \
@@ -199,7 +199,7 @@ ENV FR24FEED_ARMEL_VERSION 1.0.34-0
199199
ENV PLANEFINDER_AMD64_VERSION 5.0.162
200200
ENV PLANEFINDER_ARMHF_VERSION 5.0.161
201201

202-
ENV S6_OVERLAY_VERSION 3.0.0.2-2
202+
ENV S6_OVERLAY_VERSION 3.1.3.0
203203

204204
# Services startup
205205
ENV SERVICE_ENABLE_DUMP1090 true

build/s6-overlay.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ arch=$(dpkg --print-architecture)
33

44
case $arch in
55
armhf)
6-
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armhf-${S6_OVERLAY_VERSION}.tar.xz
6+
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armhf.tar.xz
77
;;
88
arm64)
9-
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-aarch64-${S6_OVERLAY_VERSION}.tar.xz
9+
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-aarch64.tar.xz
1010
;;
1111
armel)
12-
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armhf-${S6_OVERLAY_VERSION}.tar.xz
12+
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-armhf.tar.xz
1313
;;
1414
amd64)
15-
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-x86_64-${S6_OVERLAY_VERSION}.tar.xz
15+
url=https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-x86_64.tar.xz
1616
;;
1717
*)
1818
exit 1
1919
;;
2020
esac
2121

22-
wget -O /tmp/s6-overlay-noarch.tar.gz https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch-${S6_OVERLAY_VERSION}.tar.xz /tmp
22+
wget -O /tmp/s6-overlay-noarch.tar.gz https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz /tmp
2323
tar -C / -Jxpf /tmp/s6-overlay-noarch.tar.gz && rm /tmp/s6-overlay-noarch.tar.gz
2424
wget -O /tmp/s6-overlay.tar.gz $url && \
2525
tar -C / -Jxpf /tmp/s6-overlay.tar.gz && rm /tmp/s6-overlay.tar.gz

0 commit comments

Comments
 (0)