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

chore(workflows): upgrade deprecated GH actions #1982

Merged
merged 5 commits into from
May 10, 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
5 changes: 2 additions & 3 deletions .github/workflows/build-dmg-universal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.75.0
override: true
components: rustfmt, clippy
- name: Install Dependencies
continue-on-error: true
Expand Down Expand Up @@ -74,7 +73,7 @@ jobs:
run: |
shasum -a 256 Uplink-Mac-Universal.zip > Uplink-Mac-Universal.zip.sha256.txt
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
env:
NODE_OPTIONS: "--max-old-space-size=8192"
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cargo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Add linter failing label if cargo workflow fails
if: failure()
uses: buildsville/[email protected].0
uses: buildsville/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Remove label if exists and job is successful
if: success()
uses: buildsville/[email protected].0
uses: buildsville/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-PR-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Add invalid PR title label if regex is not matching
if: ${{ steps.regex-match.outputs.match == '' }}
uses: buildsville/[email protected].0
uses: buildsville/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Remove label if regex is matching
if: ${{ steps.regex-match.outputs.match != '' }}
uses: buildsville/[email protected].0
uses: buildsville/[email protected].1
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Expand Down
Loading
Loading