Skip to content

Commit

Permalink
Bump actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Oct 28, 2023
1 parent 443fb06 commit 06a91f2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Lint markdown files
uses: nosborn/github-action-markdown-cli@v3
Expand All @@ -28,7 +28,7 @@ jobs:
ignore_path: .markdownlintignore

- name: Perform spell check
uses: codespell-project/actions-codespell@master
uses: codespell-project/actions-codespell@v2
with:
path: '**/*.md'
check_filenames: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/interoperability.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Cache composer dependencies
uses: actions/cache@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/php.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ['ubuntu-latest']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get composer cache directory
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Setup problem matchers for PHP
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get composer cache directory
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get composer cache directory
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get composer cache directory
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
Expand All @@ -265,7 +265,7 @@ jobs:
runs-on: [ubuntu-latest]
needs: [unit-tests-linux]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 06a91f2

Please sign in to comment.