Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Node20 actions upgrade #1766

Merged
merged 4 commits into from
Mar 16, 2024
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/publish-subsplits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ jobs:
runs-on: ubuntu-latest
name: Publish package sub-splits
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'
persist-credentials: 'false'
- uses: frankdejonge/use-github-token@1.0.2
- uses: frankdejonge/use-github-token@1.1.0
with:
authentication: 'frankdejonge:${{ secrets.PERSONAL_ACCESS_TOKEN }}'
user_name: 'Frank de Jonge'
user_email: '[email protected]'
- name: Cache splitsh-lite
id: splitsh-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: './.splitsh'
key: '${{ runner.os }}-splitsh'
- uses: frankdejonge/use-subsplit-publish@1.0.0
- uses: frankdejonge/use-subsplit-publish@1.1.0
with:
source-branch: '3.x'
config-path: './config.subsplit-publish.json'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/quality-assurance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
phpstan: false
phpunit-flags: '--no-coverage'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: docker-compose -f docker-compose.yml up -d
- name: Start an SSH Agent
uses: frankdejonge/use-ssh-agent@1.0.2
uses: frankdejonge/use-ssh-agent@1.1.0
- run: chmod 0400 ./test_files/sftp/id_*
- id: ssh_agent
run: ssh-add ./test_files/sftp/id_rsa
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/set-subsplit-default-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
name: Set default git branch
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: '0'
persist-credentials: 'false'
- uses: actions/github-script@v6
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
script: |
Expand Down
Loading