Skip to content

Commit f911c98

Browse files
committed
Use latest version of actions/checkout in Go release workflow
Previously, a significantly outdated version of the `actions/checkout` GitHub Actions workflow was in use. The modern version is already in use in the Arduino Lint repository without any problems, so there is no reason to stick with the old one.
1 parent 61ad067 commit f911c98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

workflow-templates/dependabot/workflow-template-copies/.github/workflows/publish-go-nightly-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v1
18+
uses: actions/checkout@v2
1919
with:
2020
fetch-depth: 0
2121

workflow-templates/publish-go-nightly-task.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v1
18+
uses: actions/checkout@v2
1919
with:
2020
fetch-depth: 0
2121

0 commit comments

Comments
 (0)