Skip to content

Commit

Permalink
Update GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jarroyoesp committed Sep 27, 2024
1 parent 9468a7f commit af9ac11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup JDK
uses: actions/setup-java@v3
Expand Down Expand Up @@ -115,10 +115,10 @@ jobs:
steps:
# 1
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Create release tag
uses: actions/github-script@v5
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -130,7 +130,7 @@ jobs:
})
- name: Workaround to fetch the tag # Is there a better way to do it?
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
# 2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup JDK
uses: actions/setup-java@v3
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup JDK
uses: actions/setup-java@v3
Expand Down

0 comments on commit af9ac11

Please sign in to comment.