Skip to content

Bump tailwindcss from 3.4.15 to 3.4.16 in the npm-production group #756

Bump tailwindcss from 3.4.15 to 3.4.16 in the npm-production group

Bump tailwindcss from 3.4.15 to 3.4.16 in the npm-production group #756

Workflow file for this run

name: CI / Image Testing
on:
workflow_dispatch:
push:
branches:
- '**'
jobs:
test-images:
runs-on: ubuntu-latest
services:
docker:
image: docker:dind
options: >-
--privileged --mount
type=tmpfs,destination=/var/lib/docker,tmpfs-size=4096m
ports:
- 2375:2375
name: Begin Image Testing
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Pull Image from Docker Hub
run: |
docker pull ntsystems/untileverything:latest
- name: Pull Image from GHRC
run: |
docker pull ghcr.io/offensive-vk/untileverything:latest
- name: Run Container - GHCR
run: |
docker run -it -d --name my-container ghcr.io/offensive-vk/untileverything
- name: Run Container - Docker Hub
run: |
docker run -it -d --name dev-container ntsystems/untileverything
- name: List Running Docker Containers
run: |
docker ps -a
echo "## Docker Version " >> $GITHUB_STEP_SUMMARY
docker version >> $GITHUB_STEP_SUMMARY
- name: Get System Details
run: |
echo "## Docker Info" >> $GITHUB_STEP_SUMMARY
docker system info >> $GITHUB_STEP_SUMMARY