From f8dfcf46dd91f40e37b8fe283056b380d006d9c7 Mon Sep 17 00:00:00 2001 From: Malcolm Nixon Date: Sun, 22 Dec 2024 11:38:08 -0500 Subject: [PATCH] Updates for latest github pipelines. (#9) --- .github/workflows/build-on-push.yml | 8 ++++---- .github/workflows/gdlint-on-push.yml | 4 ++-- README.md | 2 +- load_test.gd | 2 -- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-on-push.yml b/.github/workflows/build-on-push.yml index d4f465f..1ef841c 100644 --- a/.github/workflows/build-on-push.yml +++ b/.github/workflows/build-on-push.yml @@ -7,14 +7,14 @@ on: jobs: build: name: Assembling artifacts - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest # Note, to satisfy the asset library we need to make sure our zip files have a root folder # this is why we checkout into demo/godot_rpm_avatar # and build plugin/godot_rpm_avatar steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: demo/godot_rpm_avatar - name: Create Godot RPM Avatar plugin @@ -29,13 +29,13 @@ jobs: rm -rf demo/godot_rpm_avatar/.git rm -rf demo/godot_rpm_avatar/.github - name: Create Godot RPM Avatar library artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: godot_rpm_avatar path: | plugin - name: Create Godot RPM Avatar demo artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: godot_rpm_avatar_demo path: | diff --git a/.github/workflows/gdlint-on-push.yml b/.github/workflows/gdlint-on-push.yml index 572b938..6e26ef6 100644 --- a/.github/workflows/gdlint-on-push.yml +++ b/.github/workflows/gdlint-on-push.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install Dependencies diff --git a/README.md b/README.md index d51cc4a..09a9eaa 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Official releases are tagged and can be found [here](https://github.com/Malcolmn The following branches are in active development: | Branch | Description | Godot version | |-----------|-------------------------------|------------------| -| master | Current development branch | Godot 4.3-dev6+ | +| master | Current development branch | Godot 4.3 | ## Overview diff --git a/load_test.gd b/load_test.gd index 8d8e366..d28a40b 100644 --- a/load_test.gd +++ b/load_test.gd @@ -36,5 +36,3 @@ func _on_load_complete(_id : String, avatar : Node3D) -> void: func _on_load_failed(_id : String, reason : String) -> void: %Status.text = reason - -