Skip to content

Commit bdf02b7

Browse files
committed
Update CI
1 parent b1e8c31 commit bdf02b7

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ jobs:
1616
image: swift:${{ matrix.swift }}
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4.2.2
19+
uses: actions/checkout@v4
2020

2121
- name: Test
2222
run: swift test -c release --enable-xctest --parallel --xunit-output .build/xUnit-output.xml
2323

2424
- name: Upload test artifacts
2525
if: failure()
26-
uses: actions/upload-artifact@v4.6.1
26+
uses: actions/upload-artifact@v4
2727
with:
2828
name: test-artifacts-linux-${{ matrix.swift }}-${{ github.run_id }}
2929
path: |

.github/workflows/ci-macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- { os: "macos-15", xcode: "16.0" }
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4.2.2
25+
uses: actions/checkout@v4
2626

2727
- name: Select Xcode ${{ matrix.config.xcode }}
2828
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.config.xcode }}.app
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Upload test artifacts
3636
if: failure()
37-
uses: actions/upload-artifact@v4.6.1
37+
uses: actions/upload-artifact@v4
3838
with:
3939
name: test-artifacts-${{ matrix.config.xcode }}-${{ github.run_id }}
4040
path: |

.github/workflows/ci-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
wasm:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4.2.2
13+
- uses: actions/checkout@v4
1414
- name: Build
1515
uses: swiftwasm/swiftwasm-action@v5.9
1616
with:

.github/workflows/ci-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
tag: 5.10-RELEASE
1818

1919
- name: Checkout
20-
uses: actions/checkout@v4.2.2
20+
uses: actions/checkout@v4
2121

2222
- name: Test
2323
run: swift test -c release --parallel --xunit-output .build/xUnit-output.xml
2424

2525
- name: Upload test artifacts
2626
if: failure()
27-
uses: actions/upload-artifact@v4.6.1
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: test-artifacts-windows-${{ github.run_id }}
3030
path: |

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
run: sudo xcode-select -s /Applications/Xcode_16.0.app
2424

2525
- name: Checkout Package
26-
uses: actions/checkout@v4.2.2
26+
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929

3030
- name: Checkout gh-pages Branch
31-
uses: actions/checkout@v4.2.2
31+
uses: actions/checkout@v4
3232
with:
3333
ref: gh-pages
3434
path: docs

.github/workflows/markdown-link-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout
10-
uses: actions/checkout@4
10+
uses: actions/checkout@v4
1111
- name: markdown-link-check
1212
uses: gaurav-nelson/github-action-markdown-link-check@1.0.16
1313

0 commit comments

Comments
 (0)