Skip to content

update

update #15

Workflow file for this run

name: Harbor
on:
push:
branches:
- main
schedule:
- cron: "0 0 * * *"
jobs:
Harbor:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: get harbor
run: |
wget https://github.com/goharbor/harbor/releases/download/v2.11.1/harbor-offline-installer-v2.11.1.tgz
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: harbor-offline-installer
path: harbor-offline-installer-v2.11.1.tgz
Graylog:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Build project
run: |
docker pull ghcr.io/aquasecurity/trivy-db:2
docker save -o trivy-db_2.tar.gz ghcr.io/aquasecurity/trivy-db:2
- name: Upload Image Artifact
uses: actions/upload-artifact@v4
with:
name: trivy-db_2
path: trivy-db_2.tar.gz