Skip to content

Commit 0e3a6a5

Browse files
committed
Release 1.6.32
1 parent a6cbb0e commit 0e3a6a5

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
add-job-summary: never
3838

3939
- name: Checkout skipstone
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v6
4141
with:
4242
repository: skiptools/skipstone
4343
path: skipstone
4444
ref: main
4545
token: ${{ secrets.REPO_ACCESS_TOKEN }}
4646

4747
- name: Checkout skip
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v6
4949
with:
5050
repository: skiptools/skip
5151
path: skip

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: macos-15
1212
steps:
1313
- name: Checkout skipstone
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
with:
1616
repository: skiptools/skipstone
1717
path: skipstone
1818
ref: main
1919
token: ${{ secrets.REPO_ACCESS_TOKEN }}
2020

2121
- name: Checkout skip
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
with:
2424
repository: skiptools/skip
2525
path: skip
@@ -30,7 +30,7 @@ jobs:
3030
ref: ${{ github.ref }}
3131

3232
- name: Checkout homebrew-skip
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
repository: skiptools/homebrew-skip
3636
path: homebrew-skip

.github/workflows/skipcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
gradle-version: current
3434
add-job-summary: never
3535
- name: Cache Homebrew packages
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/Library/Caches/Homebrew
3939
key: homebrew-packages

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ if (env["SKIPLOCAL"] != nil || env["PWD"]?.hasSuffix("skipstone") == true) {
3333
package.targets += [.executableTarget(name: "skip", dependencies: [.product(name: "SkipBuild", package: "skipstone")])]
3434
} else {
3535
#if os(macOS)
36-
package.targets += [.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.6.31/skip-macos.zip", checksum: "a32a2f6870a9d9b9b4e63b364c383fdea35d10f9b3d0f8b345c53fc6f0545579")]
36+
package.targets += [.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.6.32/skip-macos.zip", checksum: "e3e6276b535b894ae06c7081fc979bc2cfac0b482bedab80b38a6ec319760702")]
3737
#elseif os(Linux)
38-
package.targets += [.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.6.31/skip-linux.zip", checksum: "40663aa12f8a4eea2e0aa2920125ae791e3b99e47a96ae09b80e5a09436f43b0")]
38+
package.targets += [.binaryTarget(name: "skip", url: "https://source.skip.tools/skip/releases/download/1.6.32/skip-linux.zip", checksum: "b1a461a6cd64c07866e969569f0997fc99beadb02868966a67051efbc62bb9c4")]
3939
#else
40-
package.dependencies += [.package(url: "https://source.skip.tools/skipstone.git", exact: "1.6.12")]
40+
package.dependencies += [.package(url: "https://source.skip.tools/skipstone.git", exact: "1.6.32")]
4141
package.targets += [.executableTarget(name: "skip", dependencies: [.product(name: "SkipBuild", package: "skipstone")])]
4242
#endif
4343
}

Sources/SkipDrive/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// Licensed under the Open Software License version 3.0
33

44
/// The current version of SkipDrive.
5-
public let skipVersion = "1.6.31"
5+
public let skipVersion = "1.6.32"

0 commit comments

Comments
 (0)