Skip to content

Commit 373af93

Browse files
committed
Merge branch 'dev' into staging
2 parents 6de5696 + a0823de commit 373af93

26 files changed

+508
-49
lines changed

.github/workflows/build_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ jobs:
88
uses: rokroskar/[email protected]
99
env:
1010
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
11-
- uses: actions/checkout@v4.1.7
11+
- uses: actions/checkout@v4.2.1
1212
- run: docker build --no-cache .

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4.1.7
38+
uses: actions/checkout@v4.2.1
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/master-protection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: rokroskar/[email protected]
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17-
- uses: actions/checkout@v4.1.7
17+
- uses: actions/checkout@v4.2.1
1818

1919
- name: Check Tag
2020
run: |

.github/workflows/publish_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: rokroskar/[email protected]
1616
env:
1717
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18-
- uses: actions/checkout@v4.1.7
18+
- uses: actions/checkout@v4.2.1
1919
- name: Extract branch name
2020
shell: bash
2121
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"

.github/workflows/release_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Get the version
1212
id: get_version
1313
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
14-
- uses: actions/checkout@v4.1.7
14+
- uses: actions/checkout@v4.2.1
1515
- name: Set up Docker Buildx
1616
uses: docker/setup-buildx-action@v3
1717
- name: Login to Quay.io

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ default_stages: [ commit ]
33

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.6.0
6+
rev: v5.0.0
77
hooks:
88
- id: trailing-whitespace
99
- id: end-of-file-fixer
1010
- id: check-yaml
1111

1212
- repo: https://github.com/psf/black-pre-commit-mirror
1313

14-
rev: 24.8.0
14+
rev: 24.10.0
1515
hooks:
1616
- id: black
1717
language_version: python3.11

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.12.6
1+
FROM python:3.12.7
22
RUN echo "deb https://deb.debian.org/debian/ stable main" > /etc/apt/sources.list
33
RUN apt-get update -y \
44
&& apt-get install -y build-essential python3-openstackclient vim\

docker-compose.bibigrid.host.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
simplevm_client_redis:
2222
container_name: simplevm_client_redis
2323
network_mode: host # Use the host network namespace
24-
image: redis:7.4.0
24+
image: redis:7.4.1
2525
expose:
2626
- "6379"
2727

@@ -43,7 +43,7 @@ services:
4343

4444
simplevm_client_filebeat:
4545
container_name: simplevm_client_filebeat
46-
image: docker.elastic.co/beats/filebeat:8.15.1
46+
image: docker.elastic.co/beats/filebeat:8.15.2
4747
network_mode: host # Use the host network namespace
4848

4949
env_file:

docker-compose.bibigrid.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121

2222
simplevm_client_redis:
2323
container_name: simplevm_client_redis
24-
image: redis:7.4.0
24+
image: redis:7.4.1
2525
expose:
2626
- "6379"
2727
networks:
@@ -44,7 +44,7 @@ services:
4444

4545
# filebeat
4646
simplevm_filebeat:
47-
image: docker.elastic.co/beats/filebeat:8.15.1
47+
image: docker.elastic.co/beats/filebeat:8.15.2
4848
env_file:
4949
- .env
5050
volumes:

docker-compose.dev.bibigrid.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121

2222
client_redis:
2323
container_name: simplevm_client_redis
24-
image: redis:7.4.0
24+
image: redis:7.4.1
2525
expose:
2626
- "6379"
2727
networks:

0 commit comments

Comments
 (0)