Skip to content

Commit cead8e5

Browse files
- dev: updated GitHub action versions in all workflows
| :file | :name | :current | :latest | |------------------------------------------------|--------------------------------------|------------|------------| | .github/workflows/changelog-check.yaml | actions/checkout | v5 | v6 | | .github/workflows/lint-review.yaml | actions/checkout | v5 | v6 | | .github/workflows/megalinter.yaml | actions/checkout | v5 | v6 | | | actions/upload-artifact | v4 | v5 | | .github/workflows/quality-checks.yaml | actions/checkout | v5 | v6 | | | clj-kondo/clj-kondo | 2025.09.22 | 2025.10.23 | | .github/workflows/scheduled-version-check.yaml | actions/checkout | v5 | v6 |
1 parent 8f42114 commit cead8e5

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

.github/workflows/changelog-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
# Git Checkout
2121
- name: Checkout Code
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525
sparse-checkout: |

.github/workflows/lint-review.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# Git Checkout
1919
- name: Checkout Code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
token: "${{ secrets.PAT || secrets.GITHUB_TOKEN }}"
2323
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."

.github/workflows/megalinter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
# Git Checkout
3838
- name: Checkout Code
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0
4242
sparse-checkout: |
@@ -78,7 +78,7 @@ jobs:
7878
# Upload MegaLinter artifacts
7979
- name: Archive production artifacts
8080
if: success() || failure()
81-
uses: actions/upload-artifact@v4
81+
uses: actions/upload-artifact@v5
8282
with:
8383
name: MegaLinter reports
8484
path: |

.github/workflows/quality-checks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
1616

1717
- name: "Checkout code"
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."
2020

2121
- name: "Prepare Clojure tools"
2222
uses: DeLaGuardo/setup-clojure@13.4
2323
with:
2424
cljstyle: 0.17.642 # Cljstyle
25-
clj-kondo: 2025.09.22 # Clj-kondo
25+
clj-kondo: 2025.10.23 # Clj-kondo
2626

2727
- name: "Lint Clojure"
2828
run: clj-kondo --lint deps.edn --config '{:output {:pattern "::{{level}} file={{filename}},line={{row}},col={{col}}::{{message}}"}}'

.github/workflows/scheduled-version-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
3333

3434
- name: Checkout Code
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636
with:
3737
fetch-depth: 0
3838
sparse-checkout: |

CHANGELOG.org

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,17 @@
1010
|-------------|----------|---------|
1111
| nrepl/nrepl | 1.5.0 | 1.5.1 |
1212

13-
Available changes:
14-
- https://github.com/nrepl/nrepl/blob/v1.5.1/CHANGELOG.md
13+
- dev: updated GitHub action versions in all workflows
14+
15+
| :file | :name | :current | :latest |
16+
|------------------------------------------------|--------------------------------------|------------|------------|
17+
| .github/workflows/changelog-check.yaml | actions/checkout | v5 | v6 |
18+
| .github/workflows/lint-review.yaml | actions/checkout | v5 | v6 |
19+
| .github/workflows/megalinter.yaml | actions/checkout | v5 | v6 |
20+
| | actions/upload-artifact | v4 | v5 |
21+
| .github/workflows/quality-checks.yaml | actions/checkout | v5 | v6 |
22+
| | clj-kondo/clj-kondo | 2025.09.22 | 2025.10.23 |
23+
| .github/workflows/scheduled-version-check.yaml | actions/checkout | v5 | v6 |
1524

1625
* 2025-10-16
1726
** Updated

0 commit comments

Comments
 (0)