Skip to content

Commit f2617a6

Browse files
authored
Merge pull request #75 from andmpel/dependabot/github_actions/actions/checkout-5
2 parents 6389242 + 46f1994 commit f2617a6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/macup_build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
os: [macos-13, macos-14, macos-15, macos-latest]
1313
steps:
1414
- name: Checkout repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
- name: Set up Go
1717
uses: actions/setup-go@v5
1818
with:
@@ -21,5 +21,5 @@ jobs:
2121
run: go mod download
2222
- name: Build Go project
2323
run: make all
24-
# - name: Run Go tests
25-
# run: make test
24+
# - name: Run Go tests
25+
# run: make test

.github/workflows/macup_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: macos-latest
1010
steps:
1111
- name: Checkout repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
- name: Set up Go
1414
uses: actions/setup-go@v5
1515
with:

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
os: [macos-13, macos-latest]
1515
steps:
1616
- name: Checkout Code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Run Test
1919
run: |
2020
set -x # Enable Execution Logs

0 commit comments

Comments
 (0)