Skip to content

Commit 2ac1f13

Browse files
author
GitHub Workflow
committed
Runs update.sh
1 parent 4cf9a20 commit 2ac1f13

8 files changed

Lines changed: 25 additions & 25 deletions

File tree

30/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ RUN { \
150150
} > /etc/apache2/conf-available/apache-limits.conf; \
151151
a2enconf apache-limits
152152

153-
ENV NEXTCLOUD_VERSION 30.0.14
153+
ENV NEXTCLOUD_VERSION 30.0.15
154154

155155
RUN set -ex; \
156156
fetchDeps=" \
@@ -160,8 +160,8 @@ RUN set -ex; \
160160
apt-get update; \
161161
apt-get install -y --no-install-recommends $fetchDeps; \
162162
\
163-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2"; \
164-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2.asc"; \
163+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2"; \
164+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2.asc"; \
165165
export GNUPGHOME="$(mktemp -d)"; \
166166
# gpg key from https://nextcloud.com/nextcloud.asc
167167
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

30/fpm-alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,16 @@ RUN { \
129129
VOLUME /var/www/html
130130

131131

132-
ENV NEXTCLOUD_VERSION 30.0.14
132+
ENV NEXTCLOUD_VERSION 30.0.15
133133

134134
RUN set -ex; \
135135
apk add --no-cache --virtual .fetch-deps \
136136
bzip2 \
137137
gnupg \
138138
; \
139139
\
140-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2"; \
141-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2.asc"; \
140+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2"; \
141+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2.asc"; \
142142
export GNUPGHOME="$(mktemp -d)"; \
143143
# gpg key from https://nextcloud.com/nextcloud.asc
144144
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

30/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN { \
135135
VOLUME /var/www/html
136136

137137

138-
ENV NEXTCLOUD_VERSION 30.0.14
138+
ENV NEXTCLOUD_VERSION 30.0.15
139139

140140
RUN set -ex; \
141141
fetchDeps=" \
@@ -145,8 +145,8 @@ RUN set -ex; \
145145
apt-get update; \
146146
apt-get install -y --no-install-recommends $fetchDeps; \
147147
\
148-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2"; \
149-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2.asc"; \
148+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2"; \
149+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2.asc"; \
150150
export GNUPGHOME="$(mktemp -d)"; \
151151
# gpg key from https://nextcloud.com/nextcloud.asc
152152
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

31/apache/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ RUN { \
150150
} > /etc/apache2/conf-available/apache-limits.conf; \
151151
a2enconf apache-limits
152152

153-
ENV NEXTCLOUD_VERSION 31.0.8
153+
ENV NEXTCLOUD_VERSION 31.0.9
154154

155155
RUN set -ex; \
156156
fetchDeps=" \
@@ -160,8 +160,8 @@ RUN set -ex; \
160160
apt-get update; \
161161
apt-get install -y --no-install-recommends $fetchDeps; \
162162
\
163-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2"; \
164-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2.asc"; \
163+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2"; \
164+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2.asc"; \
165165
export GNUPGHOME="$(mktemp -d)"; \
166166
# gpg key from https://nextcloud.com/nextcloud.asc
167167
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

31/fpm-alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,16 @@ RUN { \
129129
VOLUME /var/www/html
130130

131131

132-
ENV NEXTCLOUD_VERSION 31.0.8
132+
ENV NEXTCLOUD_VERSION 31.0.9
133133

134134
RUN set -ex; \
135135
apk add --no-cache --virtual .fetch-deps \
136136
bzip2 \
137137
gnupg \
138138
; \
139139
\
140-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2"; \
141-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2.asc"; \
140+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2"; \
141+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2.asc"; \
142142
export GNUPGHOME="$(mktemp -d)"; \
143143
# gpg key from https://nextcloud.com/nextcloud.asc
144144
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

31/fpm/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ RUN { \
135135
VOLUME /var/www/html
136136

137137

138-
ENV NEXTCLOUD_VERSION 31.0.8
138+
ENV NEXTCLOUD_VERSION 31.0.9
139139

140140
RUN set -ex; \
141141
fetchDeps=" \
@@ -145,8 +145,8 @@ RUN set -ex; \
145145
apt-get update; \
146146
apt-get install -y --no-install-recommends $fetchDeps; \
147147
\
148-
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2"; \
149-
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2.asc"; \
148+
curl -fsSL -o nextcloud.tar.bz2 "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2"; \
149+
curl -fsSL -o nextcloud.tar.bz2.asc "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2.asc"; \
150150
export GNUPGHOME="$(mktemp -d)"; \
151151
# gpg key from https://nextcloud.com/nextcloud.asc
152152
gpg --batch --keyserver keyserver.ubuntu.com --recv-keys 28806A878AE423A28372792ED75899B9A724937A; \

latest.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
31.0.8
1+
31.0.9

versions.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"31": {
33
"branch": "31",
4-
"version": "31.0.8",
5-
"url": "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2",
6-
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-31.0.8.tar.bz2.asc",
4+
"version": "31.0.9",
5+
"url": "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2",
6+
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-31.0.9.tar.bz2.asc",
77
"variants": {
88
"apache": {
99
"variant": "apache",
@@ -27,9 +27,9 @@
2727
},
2828
"30": {
2929
"branch": "30",
30-
"version": "30.0.14",
31-
"url": "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2",
32-
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-30.0.14.tar.bz2.asc",
30+
"version": "30.0.15",
31+
"url": "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2",
32+
"ascUrl": "https://download.nextcloud.com/server/releases/nextcloud-30.0.15.tar.bz2.asc",
3333
"variants": {
3434
"apache": {
3535
"variant": "apache",

0 commit comments

Comments
 (0)