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
4 changes: 2 additions & 2 deletions .github/workflows/compose-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ jobs:
lint-result: ${{ steps.results.outputs.lint-result }}
steps:
- name: Checkout target repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}

- name: Checkout compose-workflow for linting scripts
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: owine/compose-workflow
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/compose-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
trivy-result: ${{ steps.results.outputs.trivy-result }}
steps:
- name: Checkout target repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: ${{ inputs.target-repository }}
ref: ${{ inputs.target-ref }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,12 @@ jobs:
has_disabled_stacks: ${{ steps.discover-stacks.outputs.has_disabled_stacks }}
critical_stacks: ${{ steps.detect-critical.outputs.critical_stacks }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
ref: ${{ inputs.target-ref }}

- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: owine/compose-workflow
ref: main
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
# actions/checkout authenticates via GITHUB_TOKEN; the deploy user has no
# GitHub credentials, so we fetch into the workspace and then sync the
# live tree from the local workspace (no network auth required).
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
if: steps.skip-gate.outputs.skipped == 'false'
with:
fetch-depth: 0
Expand Down Expand Up @@ -756,7 +756,7 @@ jobs:
(needs.prepare.outputs.has_removed_stacks == 'true' ||
needs.prepare.outputs.has_existing_stacks == 'true' ||
needs.prepare.outputs.has_new_stacks == 'true')
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
repository: owine/compose-workflow
sparse-checkout: scripts/deployment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

- name: Run yamllint
id: yamllint
Expand Down