Skip to content

Commit e6208ee

Browse files
committed
Update actions
1 parent efd6ee2 commit e6208ee

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/smoke-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ jobs:
2323
name: ${{ inputs.task }}
2424
runs-on: ubuntu-latest
2525
steps:
26-
- name: Check out
26+
- name: Check Out Code
2727
uses: actions/checkout@v4
2828
with:
2929
repository: ${{ inputs.checkout_repository }}
3030
ref: ${{ inputs.checkout_ref }}
3131
- name: Set up Java
32-
uses: actions/setup-java@v3
32+
uses: actions/setup-java@v4
3333
with:
3434
java-version: '17'
3535
java-package: 'jdk+crac'
3636
distribution: 'zulu'
37-
- name: Set up CRIU
37+
- name: Set Up CRIU
3838
run: |
3939
sudo chown root:root $(find /opt/hostedtoolcache -name criu -type f)
4040
sudo chmod +s $(find /opt/hostedtoolcache -name criu -type f)
41-
- name: Set up Gradle
42-
uses: gradle/gradle-build-action@982da8e78c05368c70dac0351bb82647a9e9a5d2
41+
- name: Set Up Gradle
42+
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
4343
- name: Configure Gradle user.name
4444
run: |
4545
mkdir -p ~/.gradle
@@ -50,7 +50,7 @@ jobs:
5050
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
5151
run: ./gradlew ${{ inputs.project }}:${{ inputs.task }}
5252
continue-on-error: ${{ inputs.expected_to_fail }}
53-
- name: Check out send notification action
53+
- name: Check Out Send Notification Action
5454
uses: actions/checkout@v4
5555
if: ${{ failure() }}
5656
with:

gradle/plugins/lifecycle-smoke-test-ci-plugin/src/main/resources/smoke-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ jobs:
2323
name: ${{ inputs.task }}
2424
runs-on: ubuntu-latest
2525
steps:
26-
- name: Check out
26+
- name: Check Out Code
2727
uses: actions/checkout@v4
2828
with:
2929
repository: ${{ inputs.checkout_repository }}
3030
ref: ${{ inputs.checkout_ref }}
3131
- name: Set up Java
32-
uses: actions/setup-java@v3
32+
uses: actions/setup-java@v4
3333
with:
3434
java-version: '17'
3535
java-package: 'jdk+crac'
3636
distribution: 'zulu'
37-
- name: Set up CRIU
37+
- name: Set Up CRIU
3838
run: |
3939
sudo chown root:root $(find /opt/hostedtoolcache -name criu -type f)
4040
sudo chmod +s $(find /opt/hostedtoolcache -name criu -type f)
41-
- name: Set up Gradle
42-
uses: gradle/gradle-build-action@982da8e78c05368c70dac0351bb82647a9e9a5d2
41+
- name: Set Up Gradle
42+
uses: gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
4343
- name: Configure Gradle user.name
4444
run: |
4545
mkdir -p ~/.gradle
@@ -50,7 +50,7 @@ jobs:
5050
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }}
5151
run: ./gradlew ${{ inputs.project }}:${{ inputs.task }}
5252
continue-on-error: ${{ inputs.expected_to_fail }}
53-
- name: Check out send notification action
53+
- name: Check Out Send Notification Action
5454
uses: actions/checkout@v4
5555
if: ${{ failure() }}
5656
with:

0 commit comments

Comments
 (0)