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/build-test-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fi

- name: Checkout the app
uses: actions/checkout@v4
uses: actions/checkout@v5
if: ${{ steps.check.outputs.skip == 'false' }}
- name: Make sure the appinfo is built
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-appstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout the project
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: cookbook
ref: ${{ github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Pages
uses: actions/configure-pages@v5

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout the app
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
filter: "blob:none"
fetch-depth: 0
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

steps:
- name: Checkout of the app
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1

Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:

steps:
- name: Checkout of the app
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1
- name: Get the date
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slack-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
reactions: "+1"
- name: Checkout of the app data
if: steps.config.outputs.startBackport == 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
token: ${{ secrets.COOKBOOK_BOT_TOKEN }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout the project
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup node and NPM
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

steps:
- name: Checkout the app
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 2

Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:

steps:
- name: Checkout the app
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 2

Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
path: artifacts
- name: Checkout of code base
if: ${{ github.event_name == 'push' }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: code
fetch-depth: 2
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:

steps:
- name: Checkout the app
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup node and NPM
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -426,7 +426,7 @@ jobs:
shell: bash
steps:
- name: Checkout of the app
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: build docker container image
run: docker build -t php-lint-tester .github/actions/php-linter
- name: Check the code base
Expand All @@ -442,7 +442,7 @@ jobs:

steps:
- name: Checkout of the app
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get the date
id: date
run: echo "date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT
Expand Down
Loading