Skip to content

Commit

Permalink
attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lifeart committed Oct 14, 2023
1 parent ee1c0a7 commit 1f8c13a
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/certbot-update-cert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
update_certs:
runs-on: vscale
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Configure secrets
run: |
echo "$S3_KEY"|base64 -d > aws-key.properties
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_cert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
update_certs:
runs-on: vscale
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Configure secrets
run: |
echo "$S3_KEY"|base64 -d > aws-key.properties
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-build-push-redeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build_and_publish_backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Publish to Registry brainup/brn-backend
uses: elgohr/Publish-Docker-Github-Action@master
with:
Expand All @@ -19,7 +19,7 @@ jobs:
build_and_publish_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Publish to Registry brainup/brn-frontend
uses: elgohr/Publish-Docker-Github-Action@master
with:
Expand All @@ -30,7 +30,7 @@ jobs:
build_and_publish_frontend_with_tls:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Publish to Registry brainup/brn-frontend-with-tls
uses: elgohr/Publish-Docker-Github-Action@master
with:
Expand All @@ -46,7 +46,7 @@ jobs:
# runners: [ epam, vscale ]
runners: [ vscale ]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Configure secrets
run: |
echo "$S3_KEY"|base64 -d > aws-key.properties
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
build_backend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Build the Docker image for backend
run: docker build . --file Dockerfile --tag brainup/brn-backend
- name: List of docker images
run: docker images
build_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Build the Docker image for frontent
run: docker build . --file Dockerfile_frontend --tag brainup/brn-frontend
- name: List of docker images
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-app-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Frontend tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- uses: rwjblue/setup-volta@v1
- uses: H1D/actions-ember-testing@8ca8da615c2db5889b7fbd3834e4093706754435
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/instances-redeploy.yml_tmp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
runners: [ epam, vscale ]
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Configure secrets
run: |
echo "$S3_KEY"|base64 -d > aws-key.properties
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
Expand Down

0 comments on commit 1f8c13a

Please sign in to comment.