Skip to content

Commit 6bb7cbf

Browse files
author
admin
committed
updated github actions versions
1 parent c11f0fa commit 6bb7cbf

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/changelog-enforcer.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
changelog:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: dangoslen/changelog-enforcer@v2
11+
- uses: actions/checkout@v4
12+
- uses: dangoslen/changelog-enforcer@v3
1313
with:
1414
changeLogPath: 'CHANGELOG.md'
1515
skipLabels: 'skip changelog'

.github/workflows/continuous-integration-workflow.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,30 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v4
1212
- name: Set up JDK 11
13-
uses: actions/setup-java@v1
13+
uses: actions/setup-java@v4
1414
with:
15-
java-version: 11
15+
java-version: '11'
16+
distribution: 'temurin'
1617
- name: download and install wkhtml
1718
run: |
1819
sudo apt install curl
19-
sudo curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
20-
sudo tar vxf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
20+
sudo curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox-0.12.5-1.centos8.x86_64.rpm
21+
sudo rpm -Uvh wkhtmltox-0.12.5-1.centos8.x86_64.rpm
2122
sudo mv wkhtmltox/bin/wkhtmlto* /usr/bin
2223
- name: Build with Gradle
2324
run: ./gradlew clean test shadowJar --stacktrace --no-daemon
2425
env:
2526
NO_NEXUS: true
26-
- uses: actions/cache@v1
27+
- uses: actions/cache@v4
2728
with:
2829
path: ~/.gradle/caches
2930
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
3031
restore-keys: |
3132
${{ runner.os }}-gradle-
3233
- name: TestReport
33-
uses: actions/upload-artifact@v2
34+
uses: actions/upload-artifact@v4
3435
if: ${{ always() }}
3536
with:
3637
name: JUnit Report

0 commit comments

Comments
 (0)