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

Feature/ci updates 209 #212

Merged
merged 2 commits into from
Aug 16, 2024
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/add_artifact_urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Link Artifacts via action
uses: stylesuxx/link-artifacts-in-pr-action@v1
uses: stylesuxx/link-artifacts-in-pr-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
whitelist: "[]"
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:

steps:
- name: Code Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache Toolchain
id: cache-toolchain
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.wine
key: toolchain-cache
Expand All @@ -49,7 +49,7 @@ jobs:
run: tar -cvzf bluejay-${{ github.run_number }}.tar.gz "bluejay-${GITHUB_RUN_NUMBER}"

- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bluejay-ci-${{ github.run_number }}
path: bluejay-${{ github.run_number }}.tar.gz
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Generate Changelog
if: startsWith(github.ref, 'refs/tags/v')
id: github_release
uses: mikepenz/release-changelog-builder-action@v3
uses: mikepenz/release-changelog-builder-action@v5
with:
configuration: ".changelog-configuration.json"
env:
Expand Down