Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 8, 2023
1 parent 953dd29 commit 762ce16
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
push_to_registry:
name: Build & Push docker image to dockerhub
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get metadata as environment variables
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
-t $IMAGE_NAME:azuredbmock-$COMMIT_ID ./azuredbmock
- name: Login to Docker Hub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.JORE4_DOCKERHUB_USER }}
password: ${{ secrets.JORE4_DOCKERHUB_TOKEN }}
Expand All @@ -60,7 +60,7 @@ jobs:
test-docker-images:
name: verify that the docker images work
needs: push_to_registry
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
POSTGRES_DB: testdb
POSTGRES_USER: user
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get metadata as environment variables
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand All @@ -174,7 +174,7 @@ jobs:
run_e2e_tests:
needs: push_to_registry
name: Run E2E tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Extract metadata to env variables
uses: HSLdevcom/jore4-tools/github-actions/extract-metadata@extract-metadata-v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-renovatebot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ on:
jobs:
validate:
name: Validate renovatebot config
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.3
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.0.0
with:
config_file_path: .github/renovate.json5
4 changes: 2 additions & 2 deletions .github/workflows/test-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:
jobs:
test-docker-compose:
name: verify docker-compose setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start postgres databases in docker-compose
run: docker-compose up -d
Expand Down

0 comments on commit 762ce16

Please sign in to comment.