Skip to content

Commit

Permalink
chore(workflows): upgrade deprecated GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
luisecm committed May 3, 2024
1 parent 79a3b82 commit 5200d48
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 61 deletions.
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: actions-rust-lang/setup-rust-toolchain@v1
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/add-remove-label@v2.0.0
uses: buildsville/add-remove-label@v2.0.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/add-remove-label@v2.0.0
uses: buildsville/add-remove-label@v2.0.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/add-remove-label@v2.0.0
uses: buildsville/add-remove-label@v2.0.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/add-remove-label@v2.0.0
uses: buildsville/add-remove-label@v2.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
labels: |
Expand Down
Loading

0 comments on commit 5200d48

Please sign in to comment.