Browse Source

update `actions/checkout` action

pull/551/head
Danil Ovchinnikov 1 month ago committed by Jakub Chrzanowski
parent
commit
dd98301953
  1. 10
      .github/workflows/build.yml
  2. 2
      .github/workflows/release.yml
  3. 2
      .github/workflows/run-ui-tests.yml
  4. 2
      .github/workflows/template-cleanup.yml
  5. 2
      .github/workflows/template-verify.yml

10
.github/workflows/build.yml

@ -41,7 +41,7 @@ jobs: @@ -41,7 +41,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Set up the Java environment for the next steps
- name: Setup Java
@ -92,7 +92,7 @@ jobs: @@ -92,7 +92,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Set up the Java environment for the next steps
- name: Setup Java
@ -146,7 +146,7 @@ jobs: @@ -146,7 +146,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
@ -180,7 +180,7 @@ jobs: @@ -180,7 +180,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Set up the Java environment for the next steps
- name: Setup Java
@ -220,7 +220,7 @@ jobs: @@ -220,7 +220,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Remove old release drafts by using the curl request for the available releases with a draft flag
- name: Remove Old Release Drafts

2
.github/workflows/release.yml

@ -27,7 +27,7 @@ jobs: @@ -27,7 +27,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.event.release.tag_name }}

2
.github/workflows/run-ui-tests.yml

@ -33,7 +33,7 @@ jobs: @@ -33,7 +33,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Set up the Java environment for the next steps
- name: Setup Java

2
.github/workflows/template-cleanup.yml

@ -19,7 +19,7 @@ jobs: @@ -19,7 +19,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Cleanup project
- name: Cleanup

2
.github/workflows/template-verify.yml

@ -23,7 +23,7 @@ jobs: @@ -23,7 +23,7 @@ jobs:
# Check out the current repository
- name: Fetch Sources
uses: actions/checkout@v4
uses: actions/checkout@v5
# Compare `gradle.properties` with `.github/template-cleanup/gradle.properties`
- name: Verify gradle.properties

Loading…
Cancel
Save