-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions workflows to latest (#34)
* Update actions/checkout to v4 * Always use latest theos upstream * Remove TODO to use a matrix for release workflow A matrix would be more difficult to manage because all the artifacts would need to be uploaded and then downloaded to attach to the release * Migrate to creating GitHub Releases using the official CLI The `actions/create-release` action is no longer maintained. Also migrate to workflow specific-tokens instead of an access token stored in Secrets * Migrate to latest step output API * Switch test workflow to use same steps as release workflow Using the a build workflow closer to the release workflow means we're testing the code we're actually deploying
- Loading branch information
1 parent
2c0b128
commit dd25553
Showing
4 changed files
with
49 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ jobs: | |
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: GitHub Action for SwiftLint | ||
uses: norio-nomura/[email protected] |