Skip to content

Commit a19ad6c

Browse files
dev: update GitHub actions versions for all workflows
1 parent b87cd33 commit a19ad6c

File tree

6 files changed

+18
-7
lines changed

6 files changed

+18
-7
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@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525
sparse-checkout: |

.github/workflows/lint-review.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717

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

2525
- name: clj-kondo
26-
uses: nnichols/clojure-lint-action@v4
26+
uses: nnichols/clojure-lint-action@v6
2727
with:
2828
pattern: "*.clj"
2929
clj_kondo_config: ".clj-kondo/config-ci.edn"

.github/workflows/megalinter.yaml

Lines changed: 1 addition & 1 deletion
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@v4
39+
uses: actions/checkout@v5
4040
with:
4141
fetch-depth: 0
4242
sparse-checkout: |

.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@v4
18+
uses: actions/checkout@v5
1919
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."
2020

2121
- name: "Prepare Clojure tools"
2222
uses: DeLaGuardo/[email protected]
2323
with:
2424
cljstyle: 0.17.642 # Cljstyle
25-
clj-kondo: 2025.06.05 # Clj-kondo
25+
clj-kondo: 2025.07.28 # 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@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
sparse-checkout: |

CHANGELOG.org

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55
- aliases: `update/dependency-versions` automatically updates everything to new versions
66
- dev: `dependencies-update` & `dependencies-outdated` make tasks
77

8+
- dev: update GitHub actions versions for all workflows
9+
| :file | :name | :current | :latest |
10+
|---------------------------------------------------|--------------------------------------|------------|------------|
11+
| .github/workflows/changelog-check.yaml | actions/checkout | v4 | v5 |
12+
| .github/workflows/lint-review.yaml | actions/checkout | v4 | v5 |
13+
| | nnichols/clojure-lint-action | v4 | v6 |
14+
| .github/workflows/megalinter.yaml | actions/checkout | v4 | v5 |
15+
| .github/workflows/quality-checks.yaml | actions/checkout | v4 | v5 |
16+
| | clj-kondo/clj-kondo | 2025.06.05 | 2025.07.28 |
17+
| .github/workflows/scheduled-version-check.yaml | actions/checkout | v4 | v5 |
18+
819
* 2025-07-01
920
** Updated
1021
- dev: cljstyle & clj-kondo updates in quality-checks

0 commit comments

Comments
 (0)