Skip to content

build(deps): bump docker/setup-buildx-action from 3.4.0 to 3.8.0 (#480) #961

build(deps): bump docker/setup-buildx-action from 3.4.0 to 3.8.0 (#480)

build(deps): bump docker/setup-buildx-action from 3.4.0 to 3.8.0 (#480) #961

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: "E2E Test Suites"
on:
push:
branches:
- main
- release/*
pull_request:
branches:
- "*"
defaults:
run:
shell: bash
permissions:
contents: read
env:
GRADLE_EXEC: ./gradlew
jobs:
e2e-tests:
runs-on: block-node-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Expand Shallow Clone for Spotless
run: |
if [ -f .git/shallow ]; then
git fetch --unshallow --no-recurse-submodules
else
echo "Repository is not shallow, no need to unshallow."
fi
- name: Set up JDK 21
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0
with:
distribution: "temurin"
java-version: "21.0.5"
- name: Run Acceptance Tests
id: acceptance-tests
run: ${GRADLE_EXEC} runSuites