Skip to content

Commit

Permalink
Update actions/checkout to v3 (#682)
Browse files Browse the repository at this point in the history
  • Loading branch information
samruddhikhandale committed Aug 25, 2023
1 parent 06d732b commit 3944208
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/actions/smoke-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ runs:
steps:
- name: Checkout main
id: checkout_release
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: 'devcontainers/images'
path: '__build'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-again.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ jobs:
- name: Checkout ref
id: checkout_ref
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'ref'
ref: ${{ github.ref }}

- name: Checkout release
id: checkout_release
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: 'release'
ref: ${{ github.event.inputs.release }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Checkout
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Azure CLI login
id: az_login
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Checkout
id: checkout
uses: actions/checkout@v1
uses: actions/checkout@v3

- name: Get tag name
id: get_tag_name
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version-history.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Checkout
id: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Azure CLI login
id: az_login
Expand Down

0 comments on commit 3944208

Please sign in to comment.