From 9c0564d253fed0a6f179eaad9c1068c323c64653 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 12 Nov 2025 19:09:19 -0600 Subject: [PATCH] Update GitHub Actions workflows to use 'master' branch --- .github/workflows/docker.yml | 4 ++-- .github/workflows/safety.yml | 2 +- .github/workflows/test.yml | 6 ++---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 036dfa6..093be4c 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,7 +2,7 @@ name: Build and Publish Docker Image on: push: - branches: [ main ] + branches: [ master ] tags: [ 'v*' ] env: @@ -47,7 +47,7 @@ jobs: uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 with: context: . - file: Dockerfile + file: docker/Dockerfile push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/.github/workflows/safety.yml b/.github/workflows/safety.yml index 80c5014..0e66141 100644 --- a/.github/workflows/safety.yml +++ b/.github/workflows/safety.yml @@ -1,7 +1,7 @@ name: Safety on: push: - branches: [ main ] + branches: [ master ] schedule: - cron: '0 0 * * 0' # weekly jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 33c92fd..e5e202f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,12 +1,10 @@ -# TODO: Update to use specific commit hashes for the actions for better supply chain security. - name: Run Tests on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] jobs: test: