Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps(deps): update actions/checkout action to v4.2.0 #90

Merged
merged 1 commit into from
Sep 27, 2024
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/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.1.7
uses: actions/checkout@v4.2.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.1.7
uses: actions/checkout@v4.2.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.1.7
uses: actions/checkout@v4.2.0

- name: 🧐 Lint commits using "commitlint"
uses: wagoid/commitlint-github-action@v6.1.2
Expand All @@ -40,7 +40,7 @@ jobs:
pull-requests: read
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.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.1.7
uses: actions/checkout@v4.2.0

- name: 🧐 Lint Markdown files
uses: DavidAnson/markdownlint-cli2-action@v17.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.1.7
uses: actions/checkout@v4.2.0

- name: 🧐 Lint Ansible files
uses: ansible/ansible-lint@v24.9.2
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.1.7
uses: actions/checkout@v4.2.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.1.7
uses: actions/checkout@v4.2.0

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