Skip to content

Commit c55aac0

Browse files
authored
Merge pull request #520 from deNBI/staging
Staging
2 parents 1c66cce + ed31a1f commit c55aac0

18 files changed

+3436
-9903
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/[email protected].4
11+
- uses: actions/[email protected].5
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/[email protected].4
38+
uses: actions/[email protected].5
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/[email protected].4
17+
- uses: actions/[email protected].5
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/[email protected].4
18+
- uses: actions/[email protected].5
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/[email protected].4
14+
- uses: actions/[email protected].5
1515
- name: Set up Docker Buildx
1616
uses: docker/setup-buildx-action@v3
1717
- name: Login to Quay.io

docker-compose.bibigrid.host.yml

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

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

4949
env_file:

docker-compose.bibigrid.yml

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

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

docker-compose.host.yml

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

3131
simplevm_client_filebeat:
3232
container_name: simplevm_client_filebeat
33-
image: docker.elastic.co/beats/filebeat:8.13.3
33+
image: docker.elastic.co/beats/filebeat:8.13.4
3434
env_file:
3535
- .env
3636
volumes:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
# filebeat
3131
simplevm_client_filebeat:
3232
container_name: simplevm_client_filebeat
33-
image: docker.elastic.co/beats/filebeat:8.13.3
33+
image: docker.elastic.co/beats/filebeat:8.13.4
3434
env_file:
3535
- .env
3636
volumes:

plays/setup_client.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,18 +144,18 @@
144144
when: "'bibigrid' not in ansible_run_tags and 'host_network' not in ansible_run_tags"
145145

146146
- name: Start client docker container in host network without bibigrid
147-
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up -d
147+
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.host.yml up --pull=always -d
148148
become: yes
149149
tags: [ 'never', 'host_network' ]
150150

151151
- name: Start client docker container in host network with bibigrid
152-
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up -d
152+
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.host.yml up --pull=always -d
153153
become: yes
154154
tags: [ 'never', 'host_network_bibigrid', ]
155155

156156

157157
- name: Start docker container with bibigrid
158-
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up -d
158+
shell: docker compose -f {{ client.REPO_PATH }}/docker-compose.bibigrid.yml up --pull=always -d
159159

160160
become: yes
161161
tags: [ 'never', 'bibigrid' ]

0 commit comments

Comments
 (0)