Skip to content

Commit

Permalink
Upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
julienvincent committed Sep 27, 2024
1 parent a55bdf4 commit 4c99e57
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,16 @@ jobs:
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout git repo
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Fetch Tags
run: git fetch --tags origin
uses: actions/checkout@v4

- uses: graalvm/setup-graalvm@v1
with:
java-version: '22'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}

- uses: extractions/setup-just@v1
- uses: DeLaGuardo/setup-clojure@9.5
- uses: extractions/setup-just@v2
- uses: DeLaGuardo/setup-clojure@12.5
with:
cli: latest

Expand All @@ -67,10 +62,10 @@ jobs:
needs: [build]
if: ${{ github.ref_type == 'tag' && startsWith(github.ref_name, 'v') }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Download Binary Artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: binaries
path: bin
Expand All @@ -84,7 +79,7 @@ jobs:
mv checksums.txt bin/checksums.txt
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down

0 comments on commit 4c99e57

Please sign in to comment.