15
15
if : ${{ github.event.label.name == 'status/feature_testing' || github.event.label.name == 'status/feature_testing_public' }}
16
16
runs-on : ubuntu-latest
17
17
steps :
18
- - uses : actions/checkout@v4
18
+ - uses : actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # infered from @ v4
19
19
with :
20
20
ref : ${{ github.event.pull_request.head.sha }}
21
21
token : ${{ github.token }}
27
27
env :
28
28
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
29
29
- name : Set up JDK
30
- uses : actions/setup-java@v4
30
+ uses : actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # infered from @ v4
31
31
with :
32
32
java-version : ' 21'
33
33
distribution : ' zulu'
@@ -40,29 +40,29 @@ jobs:
40
40
export VERSION=$(./mvnw -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive exec:exec)
41
41
echo "version=${VERSION}" >> $GITHUB_OUTPUT
42
42
- name : Set up QEMU
43
- uses : docker/setup-qemu-action@v3
43
+ uses : docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # infered from @ v3
44
44
- name : Set up Docker Buildx
45
45
id : buildx
46
- uses : docker/setup-buildx-action@v3
46
+ uses : docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # infered from @ v3
47
47
- name : Cache Docker layers
48
- uses : actions/cache@v4
48
+ uses : actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # infered from @ v4
49
49
with :
50
50
path : /tmp/.buildx-cache
51
51
key : ${{ runner.os }}-buildx-${{ github.sha }}
52
52
restore-keys : |
53
53
${{ runner.os }}-buildx-
54
54
- name : Configure AWS credentials for Kafka-UI account
55
- uses : aws-actions/configure-aws-credentials@v4
55
+ uses : aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # infered from @ v4
56
56
with :
57
57
aws-access-key-id : ${{ secrets.AWS_ACCESS_KEY_ID }}
58
58
aws-secret-access-key : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
59
59
aws-region : eu-central-1
60
60
- name : Login to Amazon ECR
61
61
id : login-ecr
62
- uses : aws-actions/amazon-ecr-login@v2
62
+ uses : aws-actions/amazon-ecr-login@9238dd443b7a5941caf19ffbe68be34d4dbd61df # infered from @v4
63
63
- name : Build and push
64
64
id : docker_build_and_push
65
- uses : docker/build-push-action@v6
65
+ uses : docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # infered from @ v6
66
66
with :
67
67
builder : ${{ steps.buildx.outputs.name }}
68
68
context : api
93
93
94
94
- name : update status check for private deployment
95
95
if : ${{ github.event.label.name == 'status/feature_testing' }}
96
- uses : Sibz/github-status-action@v1.1.6
96
+ uses : Sibz/github-status-action@650dd1a882a76dbbbc4576fb5974b8d22f29847f # infered from @ v1.1.6
97
97
with :
98
98
authToken : ${{secrets.GITHUB_TOKEN}}
99
99
context : " Click Details button to open custom deployment page"
@@ -103,7 +103,7 @@ jobs:
103
103
104
104
- name : update status check for public deployment
105
105
if : ${{ github.event.label.name == 'status/feature_testing_public' }}
106
- uses : Sibz/github-status-action@v1.1.6
106
+ uses : Sibz/github-status-action@650dd1a882a76dbbbc4576fb5974b8d22f29847f # infered from @ v1.1.6
107
107
with :
108
108
authToken : ${{secrets.GITHUB_TOKEN}}
109
109
context : " Click Details button to open custom deployment page"
0 commit comments