Skip to content

Update all non-major dependencies #97

Update all non-major dependencies

Update all non-major dependencies #97

Workflow file for this run

name: Test
on:
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
push:
branches:
- main
jobs:
image-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
id: buildx
uses: docker/[email protected]
with:
platforms: linux/amd64,linux/arm64
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./runner
push: false
platforms: ${{ steps.buildx.outputs.platforms }}
provenance: true
tags: |
na2na/self-hosted-runner:develop
cache-from: type=gha
cache-to: type=gha,mode=max