Skip to content

Commit

Permalink
update checkout actions to use official action by github across all w…
Browse files Browse the repository at this point in the history
…orkflows
  • Loading branch information
IreshMM committed Sep 21, 2024
1 parent 13cebe8 commit 65343c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
uses: actions/checkout@v4

- name: Build/Publish Image
uses: mobilecoinofficial/gh-actions/docker@v0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
uses: actions/checkout@v4

- name: Run hadolint with reviewdog
uses: reviewdog/action-hadolint@v1
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
uses: actions/checkout@v4

- name: Run shellcheck with reviewdog
uses: reviewdog/action-shellcheck@v1
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
uses: actions/checkout@v4

- name: Run actionlint with reviewdog
uses: reviewdog/action-actionlint@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
gh-release:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Checkout
uses: actions/checkout@v4

- name: Create a GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
- name: Create a GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true

0 comments on commit 65343c5

Please sign in to comment.