diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml index 3adb0027b..af7f621 100644 --- a/.github/workflows/ci-docker.yml +++ b/.github/workflows/ci-docker.yml @@ -10,7 +10,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK 17 @@ -20,7 +20,7 @@ jobs: java-version: '17' - name: Checkout Eno repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 ref: ${{ env.ENO_BRANCH }} @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK 17 @@ -51,7 +51,7 @@ jobs: java-version: '17' - name: Checkout Eno repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 ref: ${{ env.ENO_BRANCH }} @@ -76,7 +76,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download build id: download uses: actions/download-artifact@v3 diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index fea2f3a..1e37196 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -10,7 +10,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK 17 @@ -20,7 +20,7 @@ jobs: java-version: '17' - name: Checkout Eno repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 ref: main diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 98a7625..9f3dd7a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ on: - 'pom.xml' - '.gitignore' pull_request: + types: [opened, synchronize, reopened, ready_for_review, labeled] env: ENO_BRANCH: main @@ -21,7 +22,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up JDK 17 @@ -31,7 +32,7 @@ jobs: java-version: '17' - name: Checkout Eno repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 1 ref: ${{ env.ENO_BRANCH }}