Skip to content

Update actions

Update actions #1

Workflow file for this run

name: ssrf server
on:
push:
pull_request:
branches:
- master
- develop
paths:
- 'docker/ssrf-server/resources/server/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
steps:

Check failure on line 18 in .github/workflows/ssrf-server.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ssrf-server.yml

Invalid workflow file

You have an error in your yaml syntax on line 18
- name: ${{ github.event.repository.name }}
uses: actions/checkout@v4
- name: Set up JDK 1.8
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: cd docker/ssrf-server/resources/server && mvn -B package --file pom.xml