Skip to content

Commit f254a27

Browse files
committed
Fix merge conflicts
2 parents ce6b09f + 22c95b1 commit f254a27

3 files changed

Lines changed: 17 additions & 11 deletions

File tree

.github/workflows/build.yaml

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,23 @@ jobs:
9595
username: ${{ secrets.DOCKERHUB_USERNAME }}
9696
password: ${{ secrets.DOCKERHUB_TOKEN }}
9797

98-
# https://github.com/marketplace/actions/build-and-push-docker-images
98+
99+
100+
# https://github.com/marketplace/actions/retry-action
99101
# Never use cache with builds, build from scratch for security updates
100-
- name: Build Docker images
101-
uses: docker/build-push-action@v6
102+
- name: Retry action for Docker build
103+
uses: Wandalen/wretry.action@v3
102104
with:
103-
push: false # set to false for testing
104-
no-cache: true
105-
tags: ${{ env.BUILD_TAGS }}
106-
build-args: |
107-
PHP_IMG=${{ matrix.base_container }}
108-
COMPOSER_VERSION=${{ env.COMPOSER_VERSION }}
105+
action: docker/build-push-action@v6
106+
attempt_limit: 3
107+
attempt_delay: 5000
108+
with: |
109+
push: false # set to false for testing
110+
no-cache: true
111+
tags: ${{ env.BUILD_TAGS }}
112+
build-args: |
113+
PHP_IMG=${{ matrix.base_container }}
114+
COMPOSER_VERSION=${{ env.COMPOSER_VERSION }}
109115
110116
- name: Push Docker images
111117
uses: docker/build-push-action@v6

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ RUN if [ ! -z "$(php --version | grep ^PHP | awk '{print $2}' | grep -v ^7 | gre
104104

105105
ENV NVM_DIR /tmp/.nvm
106106
RUN mkdir ${NVM_DIR}
107-
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash
107+
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
108108

109109
# Workaround - Cypress installation
110110
ENV CYPRESS_CACHE_FOLDER /tmp/cypress/cache

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ yq
66
python-gitlab
77
awesome-codename
88
cryptography
9-
ansible-core==2.11.12
9+
ansible-core==2.17.6
1010
dnspython

0 commit comments

Comments
 (0)