Skip to content

Commit

Permalink
Bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
OpenBagTwo committed Oct 19, 2024
1 parent 8c900ca commit e59220a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_mod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # TODO: try removing this after the initial release
- name: validate gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: setup jdk ${{ matrix.java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin' # is there a reason Fabric uses Microsoft?
Expand All @@ -38,7 +38,7 @@ jobs:
- name: build
run: ./gradlew build
- name: capture build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts
path: build/libs/
12 changes: 6 additions & 6 deletions .github/workflows/build_rpg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on: # run on any push to the primary branch
pull_request:
push:
branches:
- 1.21
- 1.21.2

jobs:
test_and_build_rpg:
Expand All @@ -15,16 +15,16 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # TODO: try removing this after the initial release
- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Cache ffmpeg binaries
id: cache-ffmpeg
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: ffmpeg-cache
with:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
pyinstaller launcher.py --console --onefile -n FoxNapRPG --collect-all foxnap_rpg
- name: Cache integration test music
id: cache-music
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: music-cache
with:
Expand All @@ -107,7 +107,7 @@ jobs:
run: |
python run_integration_tests.py build/dist/FoxNapRPG 7
- name: capture build artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
if: always()
with:
name: ResourcepackGenerator-${{ runner.os }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
# them.

name: lint
on: # so lightweight I have zero qualms about doing it on all branches
push:
on: # so lightweight I have zero qualms about doing it on all branches
push:

jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install package and dependencies
Expand Down

0 comments on commit e59220a

Please sign in to comment.