Skip to content

Commit

Permalink
Merge pull request #1780 from trillium/ts.unit_tests_action_v4_all
Browse files Browse the repository at this point in the history
Bump actions/checkout@v2 -> v4 in all locations
  • Loading branch information
trillium authored Oct 9, 2024
2 parents 0a0da5b + 4f9a4c2 commit bf75b7a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/all-PRs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
test-backend-integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Make envfile
uses: SpicyPizza/create-envfile@v1
with:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
test-client-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build the client container
run: docker-compose build client
- name: Run client unit test suite
Expand All @@ -63,7 +63,7 @@ jobs:
# test-mvp-unit:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Build the client mvp container
# run: docker-compose build client-mvp-04
# - name: Run frontend unit test suite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/all-merges.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/aws-backend-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Debug Action
uses: hmarr/[email protected]
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref }}
- name: Set AWS Env & Image Tag per workflow
Expand All @@ -45,7 +45,7 @@ jobs:
needs: [setup_env]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref }}
- name: Configure AWS credentials
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-instructions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
Add-Pull-Request-Instructions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

# Create the message to post
- name: Create Instruction
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wr-pr-instructions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
const artifactJSON = JSON.parse(artifact);
return artifactJSON
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Create the message to post
- name: Post Comment
uses: actions/github-script@v4
Expand Down

0 comments on commit bf75b7a

Please sign in to comment.