Skip to content

Commit

Permalink
Merge pull request #460 from oasisprotocol/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…actions/checkout-4

ci: bump actions/checkout from 3 to 4
  • Loading branch information
pro-wh committed Oct 2, 2023
2 parents cf8ff2c + bb15ffa commit d0c46eb
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions .changelog/460.internal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ci: bump actions/checkout from 3 to 4
2 changes: 1 addition & 1 deletion .github/workflows/ci-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Needed for correct git commit --amend.
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Ensure a clean code checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
clean: true
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Determine branch and tag name
id: branch_tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Fetch all history as the recommended way to fetch all tags and
# branches of the project.
Expand Down

0 comments on commit d0c46eb

Please sign in to comment.