Skip to content

chore(deps): bump @docker/actions-toolkit from 0.43.0 to 0.46.0 #234

chore(deps): bump @docker/actions-toolkit from 0.43.0 to 0.46.0

chore(deps): bump @docker/actions-toolkit from 0.43.0 to 0.46.0 #234

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: Test
id: npm-ci-test
run: npm run ci-test
test-action-dry-run:
name: GitHub Actions Test (w/ --dry-run)
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Test Local Action
id: test-action
uses: ./
with:
sources: |
sha256:5c40b3c27b9f13c873fefb2139765c56ce97fd50230f1f2d5c91e55dec171907
sha256:c4ba6347b0e4258ce6a6de2401619316f982b7bcc529f73d2a410d0097730204
dry-run: true
tags: alpine:test
- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.metadata }}"
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest
driver-opts: network=host
- name: Build linux/amd64 image
id: amd-build
uses: docker/build-push-action@v6
with:
file: .github/test.Dockerfile
builder: ${{ steps.buildx.outputs.name }}
platforms: linux/amd64
provenance: false
outputs: type=image,oci-mediatypes=true,name=localhost:5000/name/app,push=true
- name: Build linux/arm64 image
id: arm-build
uses: docker/build-push-action@v6
with:
file: .github/test.Dockerfile
builder: ${{ steps.buildx.outputs.name }}
platforms: linux/arm64
provenance: false
outputs: type=image,oci-mediatypes=true,name=localhost:5000/name/app,push=true
- name: Test Local Action
id: test-action
uses: ./
with:
sources: |
${{ steps.amd-build.outputs.digest }}
${{ steps.arm-build.outputs.digest }}
tags: localhost:5000/name/app:test
annotations: index:org.opencontainers.image.description=Test image
- name: Print Output
id: output
run: |
echo "${{ steps.test-action.outputs.digest }}"
echo "${{ steps.test-action.outputs.metadata }}"