Skip to content

Bump com.bmuschko.docker-remote-api from 9.3.2 to 9.3.3 #192

Bump com.bmuschko.docker-remote-api from 9.3.2 to 9.3.3

Bump com.bmuschko.docker-remote-api from 9.3.2 to 9.3.3 #192

Workflow file for this run

# Workflow that checks the bootstrap, clean_up and add_service scripts in this repo produce valid code.
name: Test Scripts
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-scripts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: Install zsh
run: sudo apt install zsh
- name: Set up Java
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.9.0
with:
java-version: '17'
distribution: 'adopt'
cache: gradle
- name: Run boostrap script
shell: zsh {0}
run: ./.creek/bootstrap.sh "some-User-name/a_Nother-REpo_name" "some-User-name"
- name: Check compiles & runs
run: ./gradlew static test
- name: Add service
shell: zsh {0}
run: ./.creek/add_service.sh first-service
- name: Check compiles & runs
run: ./gradlew static test
- name: Add 2nd service
shell: zsh {0}
run: ./.creek/add_service.sh second-service
- name: Check compiles & runs
run: ./gradlew static test