Skip to content

Commit

Permalink
Update to actions/checkoutv3 to address upcoming github deprecations (g…
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgauntseo-sentry authored Nov 2, 2022
1 parent 65122d4 commit c573bdd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
name: "Release a new version"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_RELEASE_PAT }}
fetch-depth: 0
Expand All @@ -40,7 +40,7 @@ jobs:
name: Create release on self-hosted dogfood instance
needs: release
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_RELEASE_PAT }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: "unit tests"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Unit Tests
run: ./unit-test.sh
Expand All @@ -44,7 +44,7 @@ jobs:
COMPOSE_PROJECT_NAME: self-hosted-${{ strategy.job-index }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Get Compose
run: |
Expand Down

0 comments on commit c573bdd

Please sign in to comment.