File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
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 }}
Original file line number Diff line number Diff line change 11REGION=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
55SFTP_IMAGE=docker.io/atmoz/sftp:debian
66
77
Original file line number Diff line number Diff line change 1- FROM docker.io/secoresearch/fuseki:4.5 .0
1+ FROM docker.io/secoresearch/fuseki:5.3 .0
22
33USER 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
1212RUN mkdir -p /fuseki-base /fuseki-data/databases /tmp && \
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments