Skip to content
Open
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/delete-solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Validate selection is not placeholder
if: ${{ github.event.inputs.solution_name_choice == '<none>' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/export-solution-from-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: actionlint (latest)
# Download & run the latest released actionlint (un-pinned to pick up new rules automatically).
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-yaml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint YAML files with yamllint
uses: ibiqlik/action-yamllint@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-solution-manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "You must select a real solution name, not <none>." >&2
exit 1

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
lfs: true

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
RUNNER_DEBUG: 1

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
lfs: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-solution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
env:
RUNNER_DEBUG: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
lfs: true
- name: Install Power Platform CLI
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
env:
RUNNER_DEBUG: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
lfs: true
- name: Install Power Platform CLI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-solution-choices.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
echo "token=${GITHUB_TOKEN}" >> "$GITHUB_OUTPUT"
fi
- name: Checkout (uses PAT if provided)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Provide PAT secret WORKFLOW_UPDATE_TOKEN (scopes: repo, workflow) to enable
# committing changes to workflow files. Without it, default token may be rejected.
Expand Down
Loading