diff --git a/.github/workflows/build-and-deploy-ftp.yml b/.github/workflows/build-and-deploy-ftp.yml index 654f972..5259e84 100644 --- a/.github/workflows/build-and-deploy-ftp.yml +++ b/.github/workflows/build-and-deploy-ftp.yml @@ -1,10 +1,10 @@ name: Jekyll to FTP CI # Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch +# events but only for the main branch on: push: - branches: [ master ] + branches: [ main ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -16,7 +16,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - name: 🛎 Check out master + - name: 🛎 Check out main uses: actions/checkout@v4 with: fetch-depth: 1 diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 275b2ae..7158c0f 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -9,7 +9,7 @@ jobs: github-pages: runs-on: ubuntu-16.04 steps: - - name: 🛎 Check out master + - name: 🛎 Check out branch uses: actions/checkout@v2 # Use GitHub Actions' cache to shorten build times and decrease load on servers