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

Update GitHub Actions (major) #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
valgrind --version
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install sqlrelay vendor dependencies
run: |
bash bin/sqlrelay-vendor-pkgs.sh show-env
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
bash bin/careful-mv.sh /var/log/sqlrelay/debug/* /var/log/sqlrelay/odbc/* artifacts/server-log
- name: publish artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-of-test-${{ inputs.php-version }}
path: artifacts
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint Markdown files
uses: avto-dev/markdown-lint@v1
Expand All @@ -23,9 +23,9 @@ jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: 🧼 lint renovate config # Validates changes to renovate.json config file
uses: suzuki-shunsuke/github-action-renovate-config-validator@v0.1.2
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1
with:
config_file_path: 'renovate.json'

4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
lsb_release -a
sudo apt-get update
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install sqlrelay vendor dependencies
run: |
bash bin/sqlrelay-vendor-pkgs.sh show-env
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
bash bin/careful-mv.sh /var/log/sqlrelay/odbc/* artifacts/server-log
- name: publish artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifacts-of-test-${{ matrix.php-version }}
path: artifacts
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/stale@v5
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 60
Expand Down
Loading