Skip to content

Commit

Permalink
Bump actions/checkout (clojure-lsp#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericdallo authored Dec 20, 2021
1 parent a2a504d commit ee7e108
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 11 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/bump_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0

- name: Check deps
uses: nnichols/clojure-dependency-update-action@v3
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/bump_downstreams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand Down Expand Up @@ -84,7 +86,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand All @@ -110,7 +114,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand All @@ -136,7 +142,9 @@ jobs:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0

- name: Install Clojure
uses: DeLaGuardo/setup-clojure@master
Expand Down Expand Up @@ -48,7 +50,9 @@ jobs:
matrix:
jdk: [8, 11, 15, 17]
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0

- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
Expand All @@ -70,7 +74,9 @@ jobs:
matrix:
jdk: [8, 11, 15, 17]
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0

- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ jobs:
name: Build JVM jar and embedded jar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Prepare java
uses: actions/setup-java@v1
with:
Expand Down Expand Up @@ -325,7 +327,9 @@ jobs:
needs: [build-jvm, linux-amd64, linux-amd64-static, macos, windows]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand Down Expand Up @@ -353,7 +357,9 @@ jobs:
needs: [release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Get latest tag
id: latest-tag
uses: WyriHaximus/github-action-get-previous-tag@v1
Expand Down

0 comments on commit ee7e108

Please sign in to comment.