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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "PLATFORM_CACHE_TAG=${tag}" >> "$GITHUB_ENV"

- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🤖 Generate dist files
run: ansible-playbook src/playbook.yml -l ${{ matrix.php_version }}-${{ matrix.php_type }}-${{ matrix.os_name }}
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
buildkitd-flags: "--debug"

- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🚀 Create manifest list and push
working-directory: /tmp
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pull-requests: read
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🧐 Lint commits using "commitlint"
uses: wagoid/commitlint-github-action@v6.2.1
Expand All @@ -40,7 +40,7 @@ jobs:
pull-requests: read
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🧐 Lint YAML files
uses: ibiqlik/action-yamllint@v3.1.1
Expand All @@ -57,7 +57,7 @@ jobs:
group: markdown-linting-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🧐 Lint Markdown files
uses: DavidAnson/markdownlint-cli2-action@v20.0.0
Expand All @@ -77,7 +77,7 @@ jobs:
YAMLLINT_CONFIG_FILE: '${{ github.workspace }}/.github/.yamllint.yaml'
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🧐 Lint Ansible files
uses: ansible/ansible-lint@v25.6.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "PLATFORM_CACHE_TAG=${tag}" >> "$GITHUB_ENV"

- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🛠️ Install goss and dgoss
uses: e1himself/goss-installation-action@v1.2.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.2.2
uses: actions/checkout@v4.3.0

- name: 🚀 Generate dist files
run: make generate
Expand Down
Loading