Skip to content

Commit

Permalink
Revert "ci: Upgrade Node 12 actions workflows"
Browse files Browse the repository at this point in the history
This reverts commit eae04a1.
  • Loading branch information
adrian17 authored and kmeisthax committed Dec 2, 2022
1 parent 1a69934 commit 1f9fe76
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Clone Ruffle repo
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
PACKAGE_FILE: ${{ needs.create-nightly-release.outputs.package_prefix }}-macos-universal.tar.gz
steps:
- name: Clone Ruffle repo
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Download aarch64 binary
uses: actions/download-artifact@v2
Expand Down Expand Up @@ -297,7 +297,7 @@ jobs:
demo: [false, true]
steps:
- name: Clone Ruffle repo
uses: actions/checkout@v3
uses: actions/checkout@v2

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -307,7 +307,7 @@ jobs:
target: wasm32-unknown-unknown

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: "16"
registry-url: https://registry.npmjs.org
Expand Down Expand Up @@ -424,7 +424,7 @@ jobs:

- name: Clone web demo
if: matrix.demo
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
repository: ruffle-rs/demo
path: demo
Expand Down Expand Up @@ -459,7 +459,7 @@ jobs:

- name: Clone JS docs
if: ${{ !matrix.demo }}
uses: actions/checkout@v3
uses: actions/checkout@v2
with:
repository: ruffle-rs/js-docs
path: js-docs
Expand Down Expand Up @@ -498,7 +498,7 @@ jobs:
runs-on: ubuntu-22.04
if: github.repository == 'ruffle-rs/ruffle'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Get current time with dashes
uses: 1466587594/get-current-time@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
src: ${{ steps.filter.outputs.src }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- uses: dorny/paths-filter@v2
id: filter
Expand All @@ -40,7 +40,7 @@ jobs:
os: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
outputs:
src: ${{ steps.filter.outputs.src }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- uses: dorny/paths-filter@v2
id: filter
Expand All @@ -36,10 +36,10 @@ jobs:
os: [ubuntu-22.04, windows-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v2

- name: Setup Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
cache: npm
Expand Down

0 comments on commit 1f9fe76

Please sign in to comment.