diff options
author | Kichura <[email protected]> | 2024-03-19 14:30:03 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-03-19 13:30:03 +0000 |
commit | 09d6dfb0dfb1ea6dfdf247caa8e5b3c377711bcc (patch) | |
tree | 26e7a370ef481dc54b788bdf91fb4523eab93bac | |
parent | 99a641690abd3d3669249ce10243e0739a13af33 (diff) | |
download | Paper-09d6dfb0dfb1ea6dfdf247caa8e5b3c377711bcc.tar.gz Paper-09d6dfb0dfb1ea6dfdf247caa8e5b3c377711bcc.zip |
[ci skip] Upstream dependencies in workflow scripts. (#10338)
-rw-r--r-- | .github/workflows/build.yml | 6 | ||||
-rw-r--r-- | .github/workflows/pr_comment.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af890ab325..e32e3a4335 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,12 +32,12 @@ jobs: distribution: 'temurin' - name: Validate Gradle wrapper - uses: gradle/wrapper-validation-action@v1 + uses: gradle/wrapper-validation-action@v2 - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 - name: Configure Build - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: determine with: script: | diff --git a/.github/workflows/pr_comment.yml b/.github/workflows/pr_comment.yml index 2e3c6d5a55..15c059b790 100644 --- a/.github/workflows/pr_comment.yml +++ b/.github/workflows/pr_comment.yml @@ -17,7 +17,7 @@ jobs: if: github.event.workflow_run.conclusion == 'success' runs-on: ubuntu-latest steps: - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: # This snippet is public-domain, taken from # https://github.com/oprypin/nightly.link/blob/master/.github/workflows/pr-comment.yml |