Skip to content

Commit 6df8030

Browse files
committed
Update remaining dependency pins
1 parent a7d9f9b commit 6df8030

20 files changed

Lines changed: 128 additions & 114 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ jobs:
8181
run: |
8282
sudo apt-get install -y alien libaio1t64 libodbcinst2 unixodbc
8383
sudo rpm --import https://yum.oracle.com/RPM-GPG-KEY-oracle-ol8
84-
wget https://download.oracle.com/otn_software/linux/instantclient/2114000/oracle-instantclient-{basic,odbc}-21.14.0.0.0-1.el8.x86_64.rpm
85-
sudo alien -i oracle-instantclient-basic-21.14.0.0.0-1.el8.x86_64.rpm
86-
sudo alien -i oracle-instantclient-odbc-21.14.0.0.0-1.el8.x86_64.rpm
84+
wget https://yum.oracle.com/repo/OracleLinux/OL8/oracle/instantclient21/x86_64/getPackage/oracle-instantclient-{basic,odbc}-21.21.0.0.0-1.el8.x86_64.rpm
85+
sudo alien -i oracle-instantclient-basic-21.21.0.0.0-1.el8.x86_64.rpm
86+
sudo alien -i oracle-instantclient-odbc-21.21.0.0.0-1.el8.x86_64.rpm
8787
sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/libaio.so.1
8888
sudo /usr/lib/oracle/21/client64/bin/odbc_update_ini.sh / /usr/lib/oracle/21/client64/lib
8989
echo "LD_LIBRARY_PATH=/usr/lib/oracle/21/client64/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Submit signing request to SignPath
5353
if: matrix.os == 'windows-latest'
5454
id: signpath
55-
uses: signpath/github-action-submit-signing-request@v1.1
55+
uses: signpath/github-action-submit-signing-request@v2.2
5656
with:
5757
api-token: ${{ secrets.SIGNPATH_API_TOKEN }}
5858
organization-id: '45fd8443-c7ca-4d29-a68b-608948185335'
@@ -136,7 +136,7 @@ jobs:
136136
zip -r sqlpage-windows.zip sqlpage.exe sqlpage/migrations sqlpage/templates sqlpage/sqlpage.json;
137137
- name: Create Release
138138
id: create_release
139-
uses: softprops/action-gh-release@v2
139+
uses: softprops/action-gh-release@v3.0.0
140140
with:
141141
name: ${{ github.ref_name }}
142142
tag_name: ${{ github.ref_name }}

Cargo.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM rust:1.91-slim AS builder
1+
FROM --platform=$BUILDPLATFORM rust:1.95-slim AS builder
22

33
WORKDIR /usr/src/sqlpage
44
ARG TARGETARCH

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async fn main() {
2424
spawn(download_deps(c.clone(), "sqlpage.css")),
2525
spawn(download_tabler_icons(
2626
c.clone(),
27-
"https://cdn.jsdelivr.net/npm/@tabler/icons-sprite@3.35.0/dist/tabler-sprite.svg",
27+
"https://cdn.jsdelivr.net/npm/@tabler/icons-sprite@3.44.0/dist/tabler-sprite.svg",
2828
)),
2929
spawn(download_deps(c.clone(), "apexcharts.js")),
3030
spawn(download_deps(c.clone(), "tomselect.js")),

db-test-setup/postgres/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM postgres:17-alpine
1+
FROM postgres:18-alpine
22

33
# Copy the SSL certificates
44

55
COPY --chown=postgres:postgres ./ssl /ssl
66
RUN chmod 700 /ssl && chmod 600 /ssl/*
77

8-
CMD ["postgres", "-c", "ssl=on", "-c", "ssl_cert_file=/ssl/server.crt", "-c", "ssl_key_file=/ssl/server.key"]
8+
CMD ["postgres", "-c", "ssl=on", "-c", "ssl_cert_file=/ssl/server.crt", "-c", "ssl_key_file=/ssl/server.key"]

examples/mysql json handling/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
db: # The DB environment variable can be set to "mariadb" or "postgres" to test the code with different databases
1414
ports:
1515
- "3306:3306"
16-
image: mariadb:10.6 # support for json_table was added in mariadb 10.6
16+
image: mariadb:12 # support for json_table was added in mariadb 10.6
1717
environment:
1818
MYSQL_ROOT_PASSWORD: secret
19-
MYSQL_DATABASE: sqlpage
19+
MYSQL_DATABASE: sqlpage

examples/official-site/assets/highlightjs-and-tabler-theme.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
204, 209, 217; /* RGB equivalent of hsl(225, 15%, 80%) */
2525

2626
/* Code colors */
27-
--tblr-code-color: hsl(225deg 45.4% 76.93%); /* Light code text for dark theme */
27+
--tblr-code-color: hsl(
28+
225deg 45.4% 76.93%
29+
); /* Light code text for dark theme */
2830
--tblr-code-bg: hsla(225, 47%, 15%, 0.5); /* Subtle dark background */
2931
--tblr-active-bg: var(--tblr-code-bg);
3032

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM keycloak/keycloak:24.0
1+
FROM keycloak/keycloak:26.6.2
22

3-
ADD --chown=1000:0 https://github.com/jacekkow/keycloak-protocol-cas/releases/download/24.0.3/keycloak-protocol-cas-24.0.3.jar \
3+
ADD --chown=1000:0 https://github.com/jacekkow/keycloak-protocol-cas/releases/download/26.6.2/keycloak-protocol-cas-26.6.2.jar \
44
/opt/keycloak/providers/keycloak-protocol-cas.jar
55

66
COPY ./keycloak-configuration.json /opt/keycloak/data/import/realm.json
77

8-
CMD ["start-dev", "--import-realm", "--http-port", "8181"]
8+
CMD ["start-dev", "--import-realm", "--http-port", "8181"]

examples/telemetry/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
tag: "sqlpage"
4242

4343
postgres:
44-
image: postgres:16
44+
image: postgres:18
4545
command:
4646
- postgres
4747
- -c
@@ -131,13 +131,13 @@ services:
131131
- ./prometheus.yml:/etc/prometheus/prometheus.yml:ro
132132

133133
tempo:
134-
image: grafana/tempo:2.6.1
134+
image: grafana/tempo:3.0.0
135135
volumes:
136136
- ./tempo.yaml:/etc/tempo/config.yaml:ro
137137
command: ["-config.file=/etc/tempo/config.yaml"]
138138

139139
loki:
140-
image: grafana/loki:3.4.1
140+
image: grafana/loki:3.7.2
141141
command: ["-config.file=/etc/loki/local-config.yaml"]
142142
healthcheck:
143143
test: ["CMD-SHELL", "wget -q -O- http://127.0.0.1:3100/ready >/dev/null 2>&1"]

0 commit comments

Comments
 (0)