Skip to content

Commit

Permalink
GitHub: Update workflows to use actions/checkout@v4 (#6615)
Browse files Browse the repository at this point in the history
  • Loading branch information
beqqrry-aws authored Jul 9, 2024
1 parent 0fe583c commit 36ead92
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

##################################################
################## ECR PUBLIC ####################
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-auditor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
if: github.event.pull_request.merged == true
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
sparse-checkout: .github/allowed-labels.yml
sparse-checkout-cone-mode: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-auto-language.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# The Add Labels workflow adds a label to pull requests
# based on the files included in the proposed change.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout files
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
sparse-checkout: |
.github
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Get changed files
id: changed-files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Get changed files
id: changed-files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/writeme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
uses: actions/checkout@v4 # checkout the repository content to github runner.
- name: Setup Python
uses: actions/setup-python@v3
with:
Expand Down

0 comments on commit 36ead92

Please sign in to comment.