Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Action versions #205

Merged
merged 8 commits into from
Oct 16, 2023
Merged
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/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build the site in the jekyll/builder container
# We will need to remove api-reference from XML validation. Some issues are incorect and others we need to get resolved upstream.
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-api-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ concurrency:
jobs:
api-documentation:
name: "Update API Reference Documentation"
runs-on: macos-12
runs-on: macos-13

steps:
- name: "Set up Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.4
ruby-version: 3.2.2

- name: "Set up jazzy"
run: |
gem install jazzy

- name: "Checkout Sparkle Sources"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'sparkle-project/Sparkle'
token: ${{ secrets.BOT_PERSONAL_ACCESS_TOKEN }}
Expand All @@ -38,7 +38,7 @@ jobs:
path: 'sparkle-source'

- name: "Checkout Website Sources"
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-carthage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ concurrency:
jobs:
api-documentation:
name: "Update Carthage Package"
runs-on: macos-12
runs-on: macos-13

steps:
- name: "Checkout Sparkle Sources"
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'sparkle-project/Sparkle'
token: ${{ secrets.BOT_PERSONAL_ACCESS_TOKEN }}
Expand All @@ -29,7 +29,7 @@ jobs:
path: 'sparkle-source'

- name: "Checkout Website Sources"
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.BOT_PERSONAL_ACCESS_TOKEN }}
fetch-depth: 0
Expand Down