Skip to content

Commit

Permalink
Try and stop github from breaking my jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dflook committed Aug 6, 2024
1 parent 4174192 commit 3a008a0
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 12 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ concurrency:
group: release
cancel-in-progress: false

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:

release:
Expand All @@ -16,7 +19,7 @@ jobs:
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Set version statically
run: |
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Release Test

on: [push]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:

package_python3:
Expand All @@ -14,7 +17,7 @@ jobs:
image: danielflook/python-minifier-build:python3.12-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
show-progress: false
Expand Down Expand Up @@ -86,7 +89,7 @@ jobs:
pyminify --version
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
show-progress: false
Expand Down Expand Up @@ -126,7 +129,7 @@ jobs:
pyminify --version
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
show-progress: false
Expand Down Expand Up @@ -162,7 +165,7 @@ jobs:
fi
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
show-progress: false
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Unit Test

on: [push]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:

test:
Expand All @@ -15,7 +18,7 @@ jobs:
image: danielflook/python-minifier-build:${{ matrix.python }}-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/test_corpus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ on:
required: false
default: false

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
generate_results:
name: Minify Corpus
Expand All @@ -53,12 +56,12 @@ jobs:
run: rm -rf "$GITHUB_WORKSPACE/*"

- name: Checkout tests
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
path: workflow

- name: Checkout ref
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
ref: ${{ matrix.ref }}
path: python-minifier
Expand Down Expand Up @@ -109,12 +112,12 @@ jobs:
run: rm -rf "$GITHUB_WORKSPACE/*"

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
path: workflow

- name: Checkout ref
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
ref: ${{ inputs.ref }}
path: python-minifier
Expand All @@ -125,7 +128,7 @@ jobs:
cat sha.txt
- name: Checkout base ref
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
ref: ${{ inputs.base-ref }}
path: python-minifier-base
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/verify_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
required: true
type: string

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:
test_package:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/xtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Regression Test

on: [pull_request]

env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true

jobs:

test:
Expand All @@ -15,7 +18,7 @@ jobs:
image: danielflook/python-minifier-build:${{ matrix.python }}-2024-01-12
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

0 comments on commit 3a008a0

Please sign in to comment.