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
8 changes: 4 additions & 4 deletions .github/workflows/api-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
name: Ensure committed API specification is up to date
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 2

# https://taskfile.dev/installation/#github-actions
- uses: go-task/setup-task@v1
- uses: go-task/setup-task@v2

- run: |
docker network create frontend
Expand Down Expand Up @@ -53,13 +53,13 @@ jobs:
needs: [api-spec]
steps:
- name: Check out BASE rev
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
ref: ${{ github.base_ref }}
path: base

- name: Check out HEAD rev
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
ref: ${{ github.head_ref }}
path: head
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
APP_ENV: prod
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Composer install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
fetch-depth: 2

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/composer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Create docker network
run: |
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Create docker network
run: |
Expand All @@ -70,7 +70,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Create docker network
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Create docker network
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
name: PHP - Check Coding Standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Create docker network
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
name: API test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

# https://taskfile.dev/installation/#github-actions
- uses: go-task/setup-task@v1
- uses: go-task/setup-task@v2

- name: Start docker compose setup and install site
run: |
Expand All @@ -41,10 +41,10 @@ jobs:
runs-on: ubuntu-latest
name: PHPStan static analysis
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

# https://taskfile.dev/installation/#github-actions
- uses: go-task/setup-task@v1
- uses: go-task/setup-task@v2

- run: |
docker network create frontend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/twig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v7

- name: Create docker network
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/yaml.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
yaml-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7

- name: Create docker network
run: |
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ See [keep a changelog] for information about writing changes to this log.

## [Unreleased]

- [PR-39](https://github.com/itk-dev/event-database-api/pull/39)
Update GitHub Actions to latest: actions/checkout v7 and go-task/setup-task v2
- [PR-38](https://github.com/itk-dev/event-database-api/pull/38)
Extract SearchParamsBuilder from ElasticSearchIndex and unit-test the query DSL
- [PR-37](https://github.com/itk-dev/event-database-api/pull/37)
Expand Down