Skip to content

Commit

Permalink
Update actions for Node.js 20 (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kewlan authored May 10, 2024
1 parent 81ee937 commit c76e517
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Format Project
uses: DoozyX/[email protected]
Expand All @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Compile Project
run: make -j
4 changes: 2 additions & 2 deletions .github/workflows/clang_format_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.3

- uses: DoozyX/[email protected]
with:
Expand All @@ -24,7 +24,7 @@ jobs:
style: file
inplace: True

- uses: EndBug/[email protected].0
- uses: EndBug/[email protected].4
with:
committer_name: GitHub Actions
committer_email: 41898282+github-actions[bot]@users.noreply.github.com
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/create_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- name: Get Last Nightly
Expand All @@ -29,7 +29,7 @@ jobs:
echo "last_nightly=$(git describe --tags $(git rev-list --tags --max-count=1))" >> $GITHUB_ENV
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.0.1
uses: metcalfc/changelog-generator@v4.3.1
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
base-ref: ${{ env.last_nightly }}
Expand All @@ -46,7 +46,7 @@ jobs:

steps:
- name: Checkout Project
uses: actions/checkout@v3
uses: actions/checkout@v4.1.3

- name: Run Build Script
run: |
Expand All @@ -59,7 +59,7 @@ jobs:

- if: ${{ github.event.inputs.build_type == 'Nightly' }}
name: Create Pre-release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
token: "${{ secrets.GITHUB_TOKEN }}"
artifacts: "OoT3D_Randomizer.cia,OoT3D_Randomizer.3dsx,cia.png,3dsx.png"
Expand All @@ -82,7 +82,7 @@ jobs:
- if: ${{ github.event.inputs.build_type == 'Release' }}
name: Create Release
uses: ncipollo/release-action@v1.12.0
uses: ncipollo/release-action@v1.14.0
with:
token: "${{ secrets.GITHUB_TOKEN }}"
artifacts: "OoT3D_Randomizer.cia,OoT3D_Randomizer.3dsx,cia.png,3dsx.png"
Expand Down

0 comments on commit c76e517

Please sign in to comment.