Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions workflows to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored and mildbyte committed Apr 4, 2023
1 parent d6bf908 commit 0b3dae3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
TAP_MYSQL_VENV: tap_mysql_venv

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Setup Python 3.8
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[artifacts]')"
needs: build_and_test
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[artifacts]')"
needs: build_and_test
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[artifacts]')"
needs: build_and_test
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down

0 comments on commit 0b3dae3

Please sign in to comment.