Skip to content

Commit 9509061

Browse files
committed
Merge branch 'future-dev' into feature/SWS2-13
2 parents d9a23b3 + e5f372a commit 9509061

5 files changed

Lines changed: 18 additions & 10 deletions

File tree

.github/workflows/unit-tests-srv.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v2
2525

26+
# # <-- ADDING THIS STEP TO SOLVE CACHE ISSUE -->
27+
# - uses: actions/cache@v4
28+
# with:
29+
# path: |
30+
# ~/.cache/pip
31+
# .pytest_cache
32+
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
33+
2634
- name: Make envfile
2735
run: make staging-dotenv-file
2836

@@ -55,7 +63,7 @@ jobs:
5563
run: mkdir -p $GITHUB_WORKSPACE/.scannerwork && chmod -R 777 $GITHUB_WORKSPACE/.scannerwork && pwd && ls -a
5664

5765
- name: SonarCloud Scan
58-
uses: SonarSource/sonarqube-scan-action@v4.1.0
66+
uses: SonarSource/sonarqube-scan-action@v4.2.0
5967
env:
6068
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
6169
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

infra/aws/create-and-deploy-images.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
REGION=eu-west-1
2-
FUSEKI_IMAGE=docker.io/secoresearch/fuseki:4.5.0
3-
METABASE_IMAGE=docker.io/metabase/metabase:v0.44.6
4-
MONGO_EXPRESS_IMAGE=docker.io/mongo-express:0.54.0
2+
FUSEKI_IMAGE=docker.io/secoresearch/fuseki:5.3.0
3+
METABASE_IMAGE=docker.io/metabase/metabase:v0.53.6.6
4+
MONGO_EXPRESS_IMAGE=docker.io/mongo-express:1.0.2
55
SFTP_IMAGE=docker.io/atmoz/sftp:debian
66

77

infra/fuseki/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM docker.io/secoresearch/fuseki:4.5.0
1+
FROM docker.io/secoresearch/fuseki:5.3.0
22

33
USER root
4-
RUN apt-get update; \
5-
apt-get install -y --no-install-recommends procps
4+
RUN apk update && \
5+
apk add --no-cache procps
66

77

88
# Create a non-root user and group
9-
RUN groupadd -r fuseki && useradd -r -g fuseki fuseki
9+
RUN addgroup -S fuseki && adduser -S fuseki -G fuseki
1010

1111
# Ensure the /fuseki-base and /fuseki-data directories exist and set permissions
1212
RUN mkdir -p /fuseki-base /fuseki-data/databases /tmp && \

infra/metabase/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ services:
1919
metabase:
2020
container_name: metabase-${ENVIRONMENT}
2121
restart: unless-stopped
22-
image: metabase/metabase:v0.44.6
22+
image: metabase/metabase:v0.53.6.6
2323
environment:
2424
- MB_DB_TYPE=postgres
2525
- MB_DB_DBNAME=${ENV_MB_DB_DBNAME}

infra/mongo/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ services:
1818
- 'traefik.enable=false'
1919

2020
mongo-express:
21-
image: mongo-express
21+
image: mongo-express:1.0.2
2222
container_name: mongo-express-${ENVIRONMENT}
2323
environment:
2424
- ME_CONFIG_MONGODB_SERVER=mongodb-${ENVIRONMENT}

0 commit comments

Comments
 (0)