Merge pull request #599 from bunkerity/dev

Update staging-create-infra to use a static version for monolithprojects.github_actions_runner == 1.18.1
This commit is contained in:
Théophile Diot 2023-08-21 12:17:14 -04:00 committed by GitHub
commit 2675227499
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View file

@ -88,7 +88,7 @@ jobs:
# Build cached image
- name: Build image
if: inputs.CACHE == true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}
@ -100,7 +100,7 @@ jobs:
# Build non-cached image
- name: Build image
if: inputs.CACHE != true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}

View file

@ -96,7 +96,7 @@ jobs:
# Build testing package image
- name: Build package image
if: inputs.RELEASE == 'testing'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -108,7 +108,7 @@ jobs:
# Build non-testing package image
- name: Build package image
if: inputs.RELEASE != 'testing'
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
load: true
@ -138,7 +138,7 @@ jobs:
# Build test image
- name: Build test image
if: inputs.TEST == true
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: tests/linux/Dockerfile-${{ inputs.LINUX }}

View file

@ -53,7 +53,7 @@ jobs:
platforms: linux/arm64,linux/arm/v7,linux/arm/v6
# Build and push
- name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
context: .
file: ${{ inputs.DOCKERFILE }}

View file

@ -35,7 +35,7 @@ jobs:
run: pip install ansible
if: inputs.TYPE != 'k8s'
- name: Install ansible libs
run: ansible-galaxy install --timeout 120 monolithprojects.github_actions_runner && ansible-galaxy collection install --timeout 120 community.general
run: ansible-galaxy install --timeout 120 monolithprojects.github_actions_runner,1.18.1 && ansible-galaxy collection install --timeout 120 community.general
if: inputs.TYPE != 'k8s'
# Create infra
- run: ./tests/create.sh ${{ inputs.TYPE }}