Skip to content

chore(deps): Bump rstest from 0.23.0 to 0.24.0 (#22180) #28801

chore(deps): Bump rstest from 0.23.0 to 0.24.0 (#22180)

chore(deps): Bump rstest from 0.23.0 to 0.24.0 (#22180) #28801

Workflow file for this run

name: Environment Suite
on:
workflow_call:
workflow_dispatch:
push:
branches:
- master
env:
VERBOSE: true
CI: true
permissions:
statuses: write
jobs:
publish-new-environment:
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
- name: (PR review) Set latest commit status as pending
if: ${{ github.event_name == 'pull_request_review' }}
uses: myrotvorets/set-commit-status-action@v2.0.1
with:
sha: ${{ github.event.review.commit_id }}
token: ${{ secrets.GITHUB_TOKEN }}
context: Environment Suite
status: pending
- name: (PR review) Checkout PR branch
if: ${{ github.event_name == 'pull_request_review' }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.review.commit_id }}
- name: Checkout branch
if: ${{ github.event_name != 'pull_request_review' }}
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.3.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
- name: Login to DockerHub
uses: docker/login-action@v3
if: github.ref == 'refs/heads/master'
with:
username: ${{ secrets.CI_DOCKER_USERNAME }}
password: ${{ secrets.CI_DOCKER_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96
with:
images: timberio/vector-dev
flavor: |
latest=true
tags: type=sha, format=long
labels: |
org.opencontainers.image.description=Image for Vector's Docker development environment
org.opencontainers.image.source=https://github.com/vectordotdev/vector/tree/master/scripts/environment/Dockerfile
org.opencontainers.image.title=Vector development environment
org.opencontainers.image.url=https://github.com/vectordotdev/vector
- name: Build and push
uses: docker/build-push-action@v6.11.0
with:
context: .
file: ./scripts/environment/Dockerfile
push: ${{ github.ref == 'refs/heads/master' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: (PR review) Set latest commit status as ${{ job.status }}
uses: myrotvorets/set-commit-status-action@v2.0.1
if: always() && github.event_name == 'pull_request_review'
with:
sha: ${{ github.event.review.commit_id }}
token: ${{ secrets.GITHUB_TOKEN }}
context: Environment Suite
status: ${{ job.status }}