Skip to content

Commit

Permalink
Bump action versions (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
basaigh authored Jun 24, 2020
1 parent c1c2e3b commit e81c6f2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

This comment has been minimized.

Copy link
@CombedKnight4

CombedKnight4 Jun 25, 2020

Have u trieded doing @v2 for both instead of @v1 and @v2

This comment has been minimized.

Copy link
@Camotoy

Camotoy Jun 25, 2020

Member

That's what this PR did.

This comment has been minimized.

Copy link
@CombedKnight4

CombedKnight4 Jun 25, 2020

Really? then whats this?
uses: actions/upload-artifact@v1 uses: actions/upload-artifact@v2

This comment has been minimized.

Copy link
@Camotoy

Camotoy Jun 25, 2020

Member

Anything in the red was deleted, while the green was added.

This comment has been minimized.

Copy link
@williamjohnstone

williamjohnstone Jun 25, 2020

Contributor

Have you ever used Github before? Those lines are in red which means they were removed

This comment has been minimized.

Copy link
@CombedKnight4

CombedKnight4 Jun 25, 2020

i feel so stupid rn.......................................................

This comment has been minimized.

Copy link
@basaigh

basaigh Jun 25, 2020

Author Member

lol

- uses: actions/cache@v1
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand All @@ -24,31 +24,31 @@ jobs:
- name: Build with Maven
run: mvn -B package
- name: Archive artifacts (Geyser Standalone)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser Standalone
path: bootstrap/standalone/target/Geyser.jar
- name: Archive artifacts (Geyser Bukkit)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser Bukkit
path: bootstrap/bukkit/target/Geyser-Bukkit.jar
- name: Archive artifacts (Geyser BungeeCord)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser BungeeCord
path: bootstrap/bungeecord/target/Geyser-BungeeCord.jar
- name: Archive artifacts (Geyser Sponge)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser Sponge
path: bootstrap/sponge/target/Geyser-Sponge.jar
- name: Archive artifacts (Geyser Velocity)
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v2
if: success()
with:
name: Geyser Velocity
Expand Down

0 comments on commit e81c6f2

Please sign in to comment.