Skip to content

Commit 1927107

Browse files
authored
Merge pull request #398 from deNBI/staging
Staging
2 parents c58c3d8 + de33e9a commit 1927107

13 files changed

+31
-30
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@v3.6.0
11+
- uses: actions/checkout@v4.1.0
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@v3.6.0
38+
uses: actions/checkout@v4.1.0
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@v3.6.0
17+
- uses: actions/checkout@v4.1.0
1818

1919
- name: Check Tag
2020
run: |

.github/workflows/publish_docker.yml

Lines changed: 4 additions & 4 deletions
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@v3.6.0
18+
- uses: actions/checkout@v4.1.0
1919
- name: Extract branch name
2020
shell: bash
2121
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
@@ -27,15 +27,15 @@ jobs:
2727
- name: Get tag
2828
run: echo "The selected tag is ${{ steps.tag.outputs.TAG }}"
2929
- name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v2
30+
uses: docker/setup-buildx-action@v3
3131
- name: Login to Quay.io
32-
uses: docker/login-action@v2
32+
uses: docker/login-action@v3
3333
with:
3434
registry: quay.io
3535
username: ${{ secrets.QUAY_USERNAME }}
3636
password: ${{ secrets.QUAY_TOKEN }}
3737
- name: Build and publish image to Quay
38-
uses: docker/build-push-action@v4
38+
uses: docker/build-push-action@v5
3939
with:
4040
file: Dockerfile
4141
push: true

.github/workflows/release_image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ 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@v3.6.0
14+
- uses: actions/checkout@v4.1.0
1515
- name: Set up Docker Buildx
16-
uses: docker/setup-buildx-action@v2
16+
uses: docker/setup-buildx-action@v3
1717
- name: Login to Quay.io
18-
uses: docker/login-action@v2
18+
uses: docker/login-action@v3
1919
with:
2020
registry: quay.io
2121
username: ${{ secrets.QUAY_USERNAME }}
2222
password: ${{ secrets.QUAY_TOKEN }}
2323
- name: Build and publish image to Quay
24-
uses: docker/build-push-action@v4
24+
uses: docker/build-push-action@v5
2525
with:
2626
file: Dockerfile
2727
push: true

.pre-commit-config.yaml

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

44
repos:
55
- repo: https://github.com/pre-commit/pre-commit-hooks
6-
rev: v4.4.0
6+
rev: v4.5.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
13-
rev: 23.7.0
13+
rev: 23.9.1
1414
hooks:
1515
- id: black
1616
- repo: https://github.com/sondrelg/pep585-upgrade
@@ -24,7 +24,7 @@ repos:
2424
- id: isort
2525

2626
- repo: https://github.com/myint/autoflake
27-
rev: v2.2.0
27+
rev: v2.2.1
2828
hooks:
2929
- id: autoflake
3030
args:

docker-compose.bibigrid.yml

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

1919
simplevm_client_redis:
2020
container_name: simplevm_client_redis
21-
image: redis:7.2.0
21+
image: redis:7.2.1
2222
expose:
2323
- "6379"
2424
networks:
@@ -41,7 +41,7 @@ services:
4141

4242
# filebeat
4343
simplevm_filebeat:
44-
image: docker.elastic.co/beats/filebeat:8.9.1
44+
image: docker.elastic.co/beats/filebeat:8.10.2
4545
env_file:
4646
- .env
4747
volumes:

docker-compose.dev.bibigrid.yml

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

1919
client_redis:
2020
container_name: simplevm_client_redis
21-
image: redis:7.2.0
21+
image: redis:7.2.1
2222
expose:
2323
- "6379"
2424
networks:

docker-compose.dev.yml

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

1919
client_redis:
2020
container_name: simplevm_client_redis
21-
image: redis:7.2.0
21+
image: redis:7.2.1
2222
expose:
2323
- "6379"
2424
networks:

docker-compose.yml

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

1919
simplevm_client_redis:
2020
container_name: simplevm_client_redis
21-
image: redis:7.2.0
21+
image: redis:7.2.1
2222
expose:
2323
- "6379"
2424
networks:
@@ -27,7 +27,7 @@ services:
2727
# filebeat
2828
simplevm_client_filebeat:
2929
container_name: simplevm_client_filebeat
30-
image: docker.elastic.co/beats/filebeat:8.9.1
30+
image: docker.elastic.co/beats/filebeat:8.10.2
3131
env_file:
3232
- .env
3333
volumes:

0 commit comments

Comments
 (0)