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
8 changes: 4 additions & 4 deletions .github/workflows/codex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Setup project
uses: generoi/github-actions/setup@v1
uses: generoi/github-actions/setup@v2
with:
npm_fontawesome_auth_token: ${{ secrets.NPM_FONTAWESOME_AUTH_TOKEN }}
packagist_github_token: ${{ secrets.PACKAGIST_GITHUB_TOKEN }}
Expand All @@ -33,10 +33,10 @@ jobs:
run: composer install:development

- name: Setup DDEV
uses: generoi/github-actions/setup-ddev@v1
uses: generoi/github-actions/setup-ddev@v2

- name: Download database artifact
uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20
uses: dawidd6/action-download-artifact@b6e2e70617bc3265edd6dab6c906732b2f1ae151 # v21
with:
workflow: sync-db.yml
name: sanitized-db
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Upload artifacts
if: always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: codex-artifacts
path: artifacts/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Start SSH agent
uses: generoi/github-actions/ssh-agent@v1
uses: generoi/github-actions/ssh-agent@v2
with:
ssh-private-key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }}

- name: Setup project
uses: generoi/github-actions/setup@v1
uses: generoi/github-actions/setup@v2
with:
npm_fontawesome_auth_token: ${{ secrets.NPM_FONTAWESOME_AUTH_TOKEN }}
packagist_github_token: ${{ secrets.PACKAGIST_GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup Node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version-file: .nvmrc
cache: 'npm'
Expand All @@ -32,7 +32,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: e2e-test-results
path: test-results/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sync-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- uses: generoi/github-actions/ssh-agent@v1
- uses: generoi/github-actions/ssh-agent@v2
with:
ssh-private-key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }}

- name: Setup project
uses: generoi/github-actions/setup@v1
uses: generoi/github-actions/setup@v2
with:
npm_fontawesome_auth_token: ${{ secrets.NPM_FONTAWESOME_AUTH_TOKEN }}
packagist_github_token: ${{ secrets.PACKAGIST_GITHUB_TOKEN }}
Expand All @@ -40,7 +40,7 @@ jobs:
run: ssh-keyscan -p $(./vendor/bin/robo config env.@production.port || echo 22) $(./vendor/bin/robo config env.@production.host) >> ~/.ssh/known_hosts

- name: Setup DDEV
uses: generoi/github-actions/setup-ddev@v1
uses: generoi/github-actions/setup-ddev@v2

- name: Pull database from production
run: ./vendor/bin/robo db:pull @production
Expand All @@ -61,7 +61,7 @@ jobs:
-pass env:DB_ARTIFACT_KEY

- name: Upload sanitized DB artifact
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
with:
name: sanitized-db
path: .github/fixtures/sanitized-db.sql.gz.enc
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup project
uses: generoi/github-actions/setup@v1
uses: generoi/github-actions/setup@v2
with:
npm_fontawesome_auth_token: ${{ secrets.NPM_FONTAWESOME_AUTH_TOKEN }}
packagist_github_token: ${{ secrets.PACKAGIST_GITHUB_TOKEN }}
Expand All @@ -51,7 +51,7 @@ jobs:
run: composer ci --no-interaction

- name: Install WordPress
uses: generoi/github-actions/install-wordpress@v1
uses: generoi/github-actions/install-wordpress@v2
with:
multisite: ${{ inputs.multisite }}
activate_plugins: ${{ inputs.activate_plugins }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vulnerability-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup project
uses: generoi/github-actions/setup@v1
uses: generoi/github-actions/setup@v2
with:
npm_fontawesome_auth_token: ${{ secrets.NPM_FONTAWESOME_AUTH_TOKEN }}
packagist_github_token: ${{ secrets.PACKAGIST_GITHUB_TOKEN }}
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
# fails gracefully and the fallback to github.token kicks in.
if: failure() && inputs.auto_update && steps.scan.outputs.packages != ''
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
continue-on-error: true
with:
app-id: ${{ secrets.VULN_BOT_APP_ID }}
Expand Down