Skip to content

Commit 27f88d8

Browse files
committed
Move off deprecated ubuntu-20.04, bump to Swift 6.03
1 parent 162563a commit 27f88d8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ on:
99
types: [submitted]
1010

1111
env:
12-
SWIFT_IMAGE: swift:6.0.1-jammy
12+
SWIFT_IMAGE: swift:6.0.3-jammy
1313
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414

1515
jobs:
1616
validate:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v3

.github/workflows/issues.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ on:
55
types: [opened, reopened]
66

77
env:
8-
SWIFT_IMAGE: swift:6.0.1-jammy
8+
SWIFT_IMAGE: swift:6.0.3-jammy
99

1010
jobs:
1111
add:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
if: contains(github.event.issue.labels.*.name, 'Add Package')
1414

1515
steps:
@@ -77,7 +77,7 @@ jobs:
7777
body: 'It looks like there’s nothing to do here!\n\nThe package may [already be in the package list](https://github.com/SwiftPackageIndex/PackageList/blob/main/packages.json) or on the [denylist](https://github.com/SwiftPackageIndex/PackageList/blob/main/denylist.json). Or, if you submitted the wrong URL or there’s a typo, please close this issue and [start a new one](https://github.com/SwiftPackageIndex/PackageList/issues/new/choose).\n\n>Validate Error: ${{ steps.validate.outputs.validateError || 'None' }}'
7878
})
7979
remove:
80-
runs-on: ubuntu-20.04
80+
runs-on: ubuntu-latest
8181
if: contains(github.event.issue.labels.*.name, 'Remove Package')
8282

8383
steps:

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build_validator:
1515
runs-on: ubuntu-latest
1616
container:
17-
image: swift:6.0.1-jammy
17+
image: swift:6.0.3-jammy
1818
steps:
1919
- name: Build validator
2020
run: |
@@ -36,7 +36,7 @@ jobs:
3636
CONCURRENCY: "10"
3737
runs-on: ubuntu-latest
3838
container:
39-
image: swift:6.0.1-jammy
39+
image: swift:6.0.3-jammy
4040
steps:
4141
- name: Checkout
4242
uses: actions/checkout@v3
@@ -69,7 +69,7 @@ jobs:
6969
needs: check_redirects
7070
runs-on: ubuntu-latest
7171
container:
72-
image: swift:6.0.1-jammy
72+
image: swift:6.0.3-jammy
7373
steps:
7474
# we need to check out the repo in the last step in order to create a PR
7575
- name: Checkout

0 commit comments

Comments
 (0)