Skip to content

Commit

Permalink
feat: Add necessary tools
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelsJP committed Aug 28, 2023
1 parent 412f389 commit faea128
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/build_graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,22 @@ jobs:
- name: Install runner deps
run: |
sudo apt-get update
sudo apt-get install -y git
sudo apt-get install -y git wget
- name: Install docker
uses: MichaelsJP/actions-setup-docker@master
- run: |
set -x
docker version
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
id: buildx
with:
install: true
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Clone config repository
if: ${{ steps.needs_clone.outputs.NEEDS_CLONE == 1 }}
run: |
Expand Down

0 comments on commit faea128

Please sign in to comment.