Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update docker layer caching action
Browse files Browse the repository at this point in the history
The docker layer caching action appears to be causing
issues with the intergration test job.
The output includes several warnings of deprecated features.
docker compose steps after this action are unable to complete
updating to a fork of the action that is maintained
satackey/action-docker-layer-caching#347
Jesse0Michael committed Jul 21, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent d82444b commit 0e9689c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go-test-integration.yaml
Original file line number Diff line number Diff line change
@@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Go mod cache
id: go-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
@@ -43,7 +43,7 @@ jobs:
- name: Docker compose pull
run: docker compose --file ./build/docker-compose.yml --file ./build/docker-compose.test.yml --project-directory . pull
- name: Docker layer caching
uses: satackey/action-docker-layer-caching@v0.0.11
uses: jpribyl/action-docker-layer-caching@v0.1.1
continue-on-error: true
- name: Docker compose up
run: docker compose --file ./build/docker-compose.yml --file ./build/docker-compose.test.yml --project-directory . up --build --abort-on-container-exit ${{ inputs.services }} --exit-code-from integration-test

0 comments on commit 0e9689c

Please sign in to comment.