Skip to content

Commit ada9aab

Browse files
authored
Merge pull request #5 from emortalmc/renovate/actions-checkout-4.x
Update actions/checkout action to v4
2 parents d6dc3a7 + 320064c commit ada9aab

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

go/lint/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
with:
1515
go-version: ${{ inputs.go-version }}
1616
cache: false
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: go-lint
1919
uses: golangci/golangci-lint-action@v3
2020
with:

go/publish-single/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
using: "composite"
1212
steps:
1313
- name: "Checkout"
14-
uses: "actions/checkout@v3"
14+
uses: "actions/checkout@v4"
1515

1616
# Identifies if the branch is main or not and therefore whether we should tag the image as latest
1717
# Creates the tags for use later (either hash or latest and hash)

java/build/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
using: "composite"
2424
steps:
2525
- name: "Checkout"
26-
uses: "actions/checkout@v3"
26+
uses: "actions/checkout@v4"
2727

2828
- name: "Validate Gradle Wrapper"
2929
uses: "gradle/wrapper-validation-action@v1"

java/publish-dev/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
using: "composite"
1919
steps:
2020
- name: "Checkout repository"
21-
uses: "actions/checkout@v3"
21+
uses: "actions/checkout@v4"
2222

2323
- name: "Get Commit Hash"
2424
id: "commit"

java/publish-release/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ runs:
1818
using: "composite"
1919
steps:
2020
- name: "Checkout repository"
21-
uses: "actions/checkout@v3"
21+
uses: "actions/checkout@v4"
2222

2323
- name: "Get Commit Hash"
2424
id: "commit"

k8s-sync/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111
using: "composite"
1212
steps:
1313
- name: "Checkout"
14-
uses: "actions/checkout@v3"
14+
uses: "actions/checkout@v4"
1515
with:
1616
ref: "deployment"
1717

0 commit comments

Comments
 (0)