Skip to content

Bump docker/login-action from 2.2.0 to 3.0.0 #354

Bump docker/login-action from 2.2.0 to 3.0.0

Bump docker/login-action from 2.2.0 to 3.0.0 #354

Workflow file for this run

# Checks the repo builds correctly once the bootstrap & init template has run...
name: Test Scripts
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
test-scripts:
if: ${{ github.repository == 'creek-service/aggregate-template' }}
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@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.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 format check
- name: Clean
run: ./gradlew clean
- name: Run clean_up script
shell: zsh {0}
run: ./.creek/clean_up.sh
- name: Check compiles & runs
run: ./gradlew format check
- name: Clean
run: ./gradlew clean
- name: Add service
shell: zsh {0}
run: ./.creek/add_service.sh first-service
- name: Check compiles & runs
run: ./gradlew format check
- name: Clean
run: ./gradlew clean
- name: Add 2nd service
shell: zsh {0}
run: ./.creek/add_service.sh second-service
- name: Check compiles & runs
run: ./gradlew format check