Update GitHub Actions workflows to use 'master' branch

This commit is contained in:
2025-11-12 19:09:19 -06:00
parent 5da3be18cb
commit 9c0564d253
3 changed files with 5 additions and 7 deletions

View File

@@ -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 }}

View File

@@ -1,7 +1,7 @@
name: Safety
on:
push:
branches: [ main ]
branches: [ master ]
schedule:
- cron: '0 0 * * 0' # weekly
jobs:

View File

@@ -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: