Skip to content
Merged
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/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Load the Docker image
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v4.1.0
with:
context: ./alpine
push: true
tags: ghcr.io/paniclobster/devcontainer-base:test-alpine
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test setup scripts
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v4.1.0
with:
build-args: |
BASE_IMAGE=ghcr.io/paniclobster/devcontainer-base:test-alpine
Expand All @@ -53,15 +53,15 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Load the Docker image
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v4.1.0
with:
context: ./debian
push: true
tags: ghcr.io/paniclobster/devcontainer-base:test-debian
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test setup scripts
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v4.1.0
with:
build-args: |
BASE_IMAGE=ghcr.io/paniclobster/devcontainer-base:test-debian
Expand Down