WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/adjust-maintainers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:

- name: "Checkout build repo"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: armbian/build
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels-from-yml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/merge-announce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Send push to Discord
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-announce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: ${{ github.repository == 'armbian/build' && github.event.label.id == '6210849975' }}
steps:
- name: Get repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Discord webhook
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout the pull request
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for label using GH CLI
id: check
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
# Checks out the repository to read files for matching with labeler config
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# Applies labels based on the .github/labeler.yml config
- uses: actions/labeler@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-kernel-security-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -37,7 +37,7 @@ jobs:
uses: tj-actions/changed-files@70069877f29101175ed2b055d210fe8b1d54d7d7 # v46.0.3

- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: a13xp0p0v/kconfig-hardened-check
path: kconfig-hardened-check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-lint-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rewrite-kernel-configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix: ${{ steps.gen.outputs.matrix }}
count: ${{ steps.gen.outputs.count }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: "Produce inventory JSON"
run: |

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
matrix:
include: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
needs: [build-matrix, rewrite-configs]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Get current ${{ matrix.tool.PROJECT_NAME }} version
id: get-version-current
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,23 @@ runs:
passphrase: ${{ inputs.armbian_pgp_password }}

- name: "Checkout Armbian os"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: armbian/os
fetch-depth: 0
clean: false
path: os

- name: "Checkout Armbian build framework"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: armbian/build
ref: ${{ inputs.armbian_branch }}
clean: false
path: build

- name: "Checkout customisations"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
clean: false
Expand Down