Skip to content

Commit

Permalink
Update actions/checkout to v4 (#1886)
Browse files Browse the repository at this point in the history
Motivation:

actions/checkout@v3 uses Node 16 which is end-of-life

Modifications:

- Switch to v4

Result:

Using supported path
  • Loading branch information
glbrntt committed May 23, 2024
1 parent d13d647 commit 91be64e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container:
image: swift
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: "Formatting and License Headers check"
run: |
./scripts/sanity.sh
Expand All @@ -37,7 +37,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 🔧 Build
run: swift build ${{ matrix.swift-build-flags }}
timeout-minutes: 20
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 🧮 Allocation Counting Tests
run: ./Performance/allocations/test-allocation-counts.sh
env: ${{ matrix.env }}
Expand All @@ -124,7 +124,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build without NIOSSL
run: swift build
env:
Expand Down

0 comments on commit 91be64e

Please sign in to comment.