Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Merge branch 'dev' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
vktrrdk committed Oct 5, 2023
2 parents a6e0f3f + 8212385 commit ff16105
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/blacked.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Extract branch name
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.1.0
- run: docker build --no-cache .
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.1.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/master-protection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.1.0

- name: Check Tag
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: rokroskar/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.1.0
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
Expand All @@ -27,15 +27,15 @@ jobs:
- name: Get tag
run: echo "The selected tag is ${{ steps.tag.outputs.TAG }}"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}
- name: Build and publish image to Quay
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: Dockerfile
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- uses: actions/checkout@v3.6.0
- uses: actions/checkout@v4.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to Quay.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_TOKEN }}
- name: Build and publish image to Quay
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
file: Dockerfile
push: true
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repos:
- id: check-yaml

- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.9.1
hooks:
- id: black
- repo: https://github.com/sondrelg/pep585-upgrade
Expand All @@ -27,7 +27,7 @@ repos:
- id: flynt

- repo: https://github.com/myint/autoflake
rev: v2.2.0
rev: v2.2.1
hooks:
- id: autoflake
args:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.bibigrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

client_redis:
container_name: client_redis
image: redis:7.2.0
image: redis:7.2.1
expose:
- "6379"
healthcheck:
Expand All @@ -45,7 +45,7 @@ services:

# filebeat
filebeat:
image: docker.elastic.co/beats/filebeat:8.9.1
image: docker.elastic.co/beats/filebeat:8.10.2
env_file:
- .env
volumes:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.bibigrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

client_redis:
container_name: client_redis
image: redis:7.2.0
image: redis:7.2.1
expose:
- "6379"
healthcheck:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

client_redis:
container_name: client_redis
image: redis:7.2.0
image: redis:7.2.1
expose:
- "6379"
healthcheck:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ services:

client_redis:
container_name: client_redis
image: redis:7.2.0
image: redis:7.2.1
expose:
- "6379"
healthcheck:
Expand All @@ -32,7 +32,7 @@ services:
# filebeat
filebeat:
container_name: client_filebeat
image: docker.elastic.co/beats/filebeat:8.9.1
image: docker.elastic.co/beats/filebeat:8.10.2
env_file:
- .env
volumes:
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
setuptools==68.1.2
setuptools==68.2.2
thrift==0.16.0
python-keystoneclient==5.1.0
openstacksdk ==1.4.0
python-keystoneclient==5.2.0
openstacksdk ==1.5.0
deprecated ==1.2.14
Click==8.1.7
ansible==8.3.0
ansible==8.4.0
flake8==6.1.0
paramiko==3.3.1
ruamel.yaml==0.17.32
ruamel.yaml==0.17.35
pyvim==3.0.3
redis==5.0.0
redis==5.0.1
requests==2.31.0
pyyaml==6.0.1
2 changes: 1 addition & 1 deletion requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ roles:


- name: andrewrothstein.miniconda
version: v6.1.9
version: v6.2.0

- name: andrewrothstein.conda-env

0 comments on commit ff16105

Please sign in to comment.