Merge pull request #1013 from pi-hole/dependabot/github_actions/actions/checkout-3

Bump actions/checkout from 2 to 3
This commit is contained in:
Adam Warner 2022-04-04 22:07:52 +01:00 committed by GitHub
commit 10c960dd92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ jobs:
name: Syncing branches
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Opening pull request
id: pull
uses: tretuna/sync-branches@1.4.0

View File

@ -17,7 +17,7 @@ jobs:
DEBIAN_VERSION: buster
steps:
- name: Checkout Repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Run Tests
run: |
echo "Building ${ARCH}-${DEBIAN_VERSION}"
@ -31,11 +31,11 @@ jobs:
-
name: Checkout
if: github.event_name != 'schedule'
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: Checkout dev branch if we are building nightly
if: github.event_name == 'schedule'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: dev
-