Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-node-modules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
run: sudo apt-get install jq

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up NodeJS environment
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: Check that 'npm install' would make no changes
run: >
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/npm-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}

- name: Set up NodeJS environment
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'

- name: npm install
run: npm install

- name: Commit and push node_modules if it changed
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Automatic commit: Update node_modules to reflect changes to package.json/package-lock.json"
file_pattern: node_modules
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:

steps:
- name: "Checkout repo"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"
with:
fetch-depth: 0
token: ${{ secrets.ACCESS_TOKEN }}

- name: Set up NodeJS environment
uses: "actions/setup-node@v1"
uses: "actions/setup-node@v4"
with:
node-version: '18'
node-version: '20'

- name: Set up Git environment
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout testing repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: zofrex/mirror-branch-testing
ref: testing
Expand All @@ -29,7 +29,7 @@ jobs:
run: echo "message=Test commit $GITHUB_SHA" >> $GITHUB_OUTPUT

- name: Commit and push change to testing repo
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: ${{ steps.write-commit-message.outputs.message }}
branch: testing # make this explicit just to be certain
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Whether or not to force push. "true" means to force push, "false" means don't. D

Mirror the `release-candidate` branch to the `master` branch:

```
```yml
name: Mirror branch

on:
Expand All @@ -36,7 +36,7 @@ jobs:

Mirror the `release` branch to the `deployment` branch, but don't force push:

```
```yml
name: Mirror branch

on:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ inputs:
required: false
default: 'true'
runs:
using: 'node16'
using: 'node20'
main: 'index.js'
13 changes: 12 additions & 1 deletion node_modules/.bin/uuid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions node_modules/.bin/uuid.cmd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions node_modules/.bin/uuid.ps1

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 33 additions & 13 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/oidc-utils.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/oidc-utils.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions node_modules/@actions/core/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/http-client/lib/auth.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions node_modules/@actions/http-client/lib/index.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading