Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: xcrun xcodebuild -version

- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Custom setup
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Render pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Load variables
shell: bash
env:
Expand All @@ -45,7 +45,7 @@ jobs:

chmod +rx output
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: output

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Version information
run: xcrun xcodebuild -version

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup configuration
env:
Expand All @@ -41,7 +41,7 @@ jobs:
} | tee Powercast/Local.xcconfig

- name: Cache DerivedData
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/Library/Developer/Xcode/DerivedData/Powercast-*
key: ${{ runner.os }}-xcode-${{ hashFiles('**/*.pbxproj', '**/swiftpm/Package.resolved') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: make all
shell: bash

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/xcodebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
xcrun xcodebuild -version

- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup local configuration
run: |
Expand All @@ -25,7 +25,7 @@ jobs:
cp -v Powercast/Local.xcconfig.sample Powercast/Local.xcconfig

- name: Cache DerivedData
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/Library/Developer/Xcode/DerivedData/Powercast-*
key: ${{ runner.os }}-xcode-${{ hashFiles('**/*.pbxproj', '**/swiftpm/Package.resolved') }}
Expand Down
Loading