We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ac5349 commit 3285754Copy full SHA for 3285754
.github/workflows/swift-test.yml
@@ -18,7 +18,7 @@ jobs:
18
strategy:
19
matrix:
20
image:
21
- - swift:5.7.3-amazonlinux2
+ - swift:5.10.1
22
container:
23
image: ${{ matrix.image }}
24
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
@@ -29,10 +29,10 @@ jobs:
29
steps:
30
# Checkout the repository to the GitHub Actions runner
31
- name: Checkout
32
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
33
- name: Setup
34
run: |
35
- yum -y update && yum -y install git make curl
+ export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true && apt-get -q update && apt-get -q install -y make curl wget
36
- name: Test
37
38
make test
0 commit comments