Skip to content

Commit

Permalink
fix: actions to cap at v5
Browse files Browse the repository at this point in the history
  • Loading branch information
d-exclaimation committed Nov 16, 2024
1 parent 22618e6 commit 7520cfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 11 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,9 @@ on:
- 'version-*'

jobs:
five-six:
five:
container:
image: swift:5.6
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: swift build
- run: swift test
latest:
container:
image: swift:latest
image: swift:5.10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Get the latest tag for Swift on Linux (non-slim one)
FROM swift:latest AS latest
FROM swift:5.10 AS latest

WORKDIR /latest

Expand Down

0 comments on commit 7520cfb

Please sign in to comment.