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/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 @@ -9,7 +9,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
4 changes: 2 additions & 2 deletions .github/workflows/pdf-at-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:

steps:
- name: Checkout PR branch (documentation)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha }}
path: documentation

- name: Checkout `www` branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: www
path: www
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 @@ -10,7 +10,7 @@ jobs:
if: ${{ github.repository_owner == 'Armbian' }}
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
2 changes: 1 addition & 1 deletion .github/workflows/pr-auto-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/labeler@v6
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-from-armbian-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
steps:

- name: Checkout main documentation
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'armbian/documentation'
path: 'documentation'

- name: Checkout Armbian config repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'armbian/configng'
path: 'config'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-mirrors-from-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:

- name: Checkout main documentation
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: 'armbian/documentation'
path: 'documentation'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: main
fetch-depth: 1
Expand Down
Loading