Skip to content

Commit f836f39

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.07.28 | 2025.10.23 | | | clojure/brew-install | 1.12.2.1565 | 1.12.3.1577 | | .github/workflows/scheduled-stale-check.yaml | actions/stale | v9 | v10.1.0 | | .github/workflows/scheduled-version-check.yaml | actions/checkout | v5 | v6 |
1 parent de47527 commit f836f39

File tree

7 files changed

+22
-9
lines changed

7 files changed

+22
-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
@@ -28,7 +28,7 @@ jobs:
2828

2929
# Git Checkout
3030
- name: Checkout Code
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434
sparse-checkout: |
@@ -54,7 +54,7 @@ jobs:
5454
# Upload MegaLinter artifacts
5555
- name: Archive production artifacts
5656
if: ${{ success() }} || ${{ failure() }}
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
name: MegaLinter reports
6060
path: |

.github/workflows/quality-checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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
with:
2020
fetch-depth: 0
2121
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner."
@@ -38,9 +38,9 @@ jobs:
3838
- name: "Install tools"
3939
uses: DeLaGuardo/[email protected]
4040
with:
41-
cli: 1.12.2.1565 # Clojure CLI
41+
cli: 1.12.3.1577 # Clojure CLI
4242
cljstyle: 0.17.642
43-
clj-kondo: 2025.07.28
43+
clj-kondo: 2025.10.23
4444

4545
- name: "Kaocha test runner"
4646
run: clojure -X:test/env:test/run

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- run: echo "🐧 Job running on ${{ runner.os }} server"
2323
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository"
2424

25-
- uses: actions/stale@v9
25+
- uses: actions/stale@v10
2626
with:
2727
stale-issue-message: 'After 30 days with no activity, the issue was automatically marked stale. Remove stale label or add a comment to prevent the issue being closed in 5 days.'
2828
stale-pr-message: 'After 45 days with no activity, the Pull Request was automatically marked stale. Remove stale label or comment to prevent the PR being closed in 10 days.'

.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
- run: echo "🐙 ${{ github.repository }} repository sparse-checkout to the CI runner."
3737
- name: Antq Check Version
3838
uses: liquidz/antq-action@main

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. This change
55
# [Unreleased]
66
## Added
77
- dev: add version control tasks and update format
8+
- dev: updated GitHub action versions in all workflows
9+
10+
| :file | :name | :current | :latest |
11+
|------------------------------------------------|-------------------------|-------------|-------------|
12+
| .github/workflows/changelog-check.yaml | actions/checkout | v5 | v6 |
13+
| .github/workflows/lint-review.yaml | actions/checkout | v5 | v6 |
14+
| .github/workflows/megalinter.yaml | actions/checkout | v5 | v6 |
15+
| | actions/upload-artifact | v4 | v5 |
16+
| .github/workflows/quality-checks.yaml | actions/checkout | v5 | v6 |
17+
| | clj-kondo/clj-kondo | 2025.07.28 | 2025.10.23 |
18+
| | clojure/brew-install | 1.12.2.1565 | 1.12.3.1577 |
19+
| .github/workflows/scheduled-stale-check.yaml | actions/stale | v9 | v10.1.0 |
20+
| .github/workflows/scheduled-version-check.yaml | actions/checkout | v5 | v6 |
821

922
# 2025-10-09
1023
## Updated

0 commit comments

Comments
 (0)