Skip to content

Update VSTS agent version to 4.255.0 in Dockerfile - bd14d5638c00b3ccffe16bd41cf0e2ed93af174a #8

Update VSTS agent version to 4.255.0 in Dockerfile - bd14d5638c00b3ccffe16bd41cf0e2ed93af174a

Update VSTS agent version to 4.255.0 in Dockerfile - bd14d5638c00b3ccffe16bd41cf0e2ed93af174a #8

Workflow file for this run

name: PR Validation
on:
pull_request:
paths-ignore:
- "README.md"
- "LICENSE"
- ".gitignore"
- ".github/**"
run-name: ${{ github.event.pull_request.title }} - ${{ github.sha }}
env:
DOCKER_BUILDKIT: 1
DOCKER_REPO_TAG: "azure-devops-agent:${{ github.sha }}"
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: docker login
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker build
uses: docker/build-push-action@v4
with:
context: src
file: ./Dockerfile
# push: true
push: false
tags: ${{ env.DOCKER_REPO_TAG }}