Skip to content

Commit

Permalink
ci: do not use latest
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Nov 19, 2024
1 parent 5c814bb commit 79f7825
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@latest
uses: actions/checkout@v4

# Setup Java 21 environment for the next steps
- name: Setup Java
uses: actions/setup-java@latest
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 21
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
# Collect Tests Result of failed tests
- name: Collect Tests Result
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:

# Check out current repository
- name: Fetch Sources
uses: actions/checkout@latest
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}

# Setup Java 17 environment for the next steps
- name: Setup Java
uses: actions/setup-java@latest
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
Expand Down

0 comments on commit 79f7825

Please sign in to comment.