mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* Update to Node 20 (#267) * Update action.yml * Update build.yml * update CHANGELOG * Drop old containers * update CHANGELOG --------- Co-authored-by: Po Chen <chenpaul914@gmail.com>
26 lines
584 B
YAML
26 lines
584 B
YAML
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
name: Docker container (Ubuntu)
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
verify:
|
|
name: Verify
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-20.04
|
|
- ubuntu-22.04
|
|
docker_image:
|
|
- ubuntu:20.04
|
|
- ubuntu:22.04
|
|
uses: "./.github/workflows/reusable-verify.yml"
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
docker_image: ${{ matrix.docker_image }}
|
|
package_installation_command: |
|
|
apt update
|
|
apt install -y openssh-client git
|
|
secrets: inherit
|