Skip to content

chore(deps): update portainer/portainer-ce docker tag to v2.19.3 #320

chore(deps): update portainer/portainer-ce docker tag to v2.19.3

chore(deps): update portainer/portainer-ce docker tag to v2.19.3 #320

Workflow file for this run

---
on: # yamllint disable-line rule:truthy
push:
branches:
- 'master'
tags:
- 'v*.*.*'
pull_request:
branches:
- 'master'
release:
types:
- 'created'
schedule:
# Every Sunday at 05:10
- cron: '10 5 * * 0'
name: 🔍 Continuous integration
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: 📦 Install goss
uses: e1himself/[email protected]
- name: 📦 Check out the codebase
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
### For Cross Platform OSX builds uncomment these lines
- name: 🖥️ Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: 🚀 Set up Docker BuildX
uses: docker/setup-buildx-action@v3
with:
install: true
- name: 🧪 Run dcgoss tests
run: make test
...