patch(deps): bump alpine from beefdbd
to 1e42bbe
#769
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: devcontainer-ci | |
on: | |
push: | |
paths-ignore: | |
- README.md | |
- LICENSE.md | |
- 'docs/**' | |
- '.github/workflows/actions.yaml' | |
- '.github/workflows/codeql-analysis.yaml' | |
- '.github/dependabot.yaml' | |
- '.gitignore' | |
branches: | |
- root | |
pull_request: | |
paths-ignore: | |
- README.md | |
- LICENSE.md | |
- 'docs/**' | |
- '.github/workflows/actions.yaml' | |
- '.github/workflows/codeql-analysis.yaml' | |
- '.github/dependabot.yaml' | |
- '.gitignore' | |
workflow_dispatch: | |
jobs: | |
devcontainer-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Docker BuildKit | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 | |
- name: Build and run dev container task | |
uses: devcontainers/ci@a56d055efecd725e8cfe370543b6071b79989cc8 # v0.3.1900000349 | |
with: | |
imageName: ghcr.io/jjliggett/jjversion-dc | |
runCmd: | | |
echo "Starting" | |
make test | |
go vet | |
go test ./... | |
go build -o jjversion | |
./jjversion | |
./jjversion | jq --raw-output '.MajorMinorPatch' | |
docker build -t jjliggett/jjversion . | |
docker run -d --name jjversion jjliggett/jjversion sleep infinity | |
docker cp . jjversion:/repo | |
docker exec -t jjversion jjversion | |
docker kill jjversion | |
docker rm jjversion | |
push: never |