diff options
| author | Paul-Christian Volkmer | 2024-02-05 08:12:28 +0100 |
|---|---|---|
| committer | Paul-Christian Volkmer | 2024-02-05 08:12:28 +0100 |
| commit | 8c319197d01862908196db3f874fdb7bc79d784c (patch) | |
| tree | 69a738a35a5c9b2d4bee0891722d9a1dcd26aba6 /.github/workflows/deploy.yml | |
| parent | a31d2b4bcc4c5a1d035f64c5628ecc906983d9c6 (diff) | |
build: update used actions
Diffstat (limited to '.github/workflows/deploy.yml')
| -rw-r--r-- | .github/workflows/deploy.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6d15376..8fe506a 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: "Run build and deploy" +name: 'Run build and deploy' on: release: @@ -8,17 +8,17 @@ jobs: docker: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-java@v3 + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 with: java-version: '17' distribution: 'temurin' - name: Setup Gradle - uses: gradle/gradle-build-action@v2.4.2 + uses: gradle/actions/setup-gradle@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Login to Docker Hub uses: docker/login-action@v2 |
