Skip to content

Commit

Permalink
Bump GA runners
Browse files Browse the repository at this point in the history
  • Loading branch information
niknetniko committed Sep 29, 2024
1 parent 6897b61 commit 5255b9a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
environment: production
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
- name: Add SSH key
uses: webfactory/ssh-agent@v0.5.3
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
- name: Add known hosts
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install apt packages
run: |
sudo apt-get update
sudo apt-get install shellcheck
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install html5validator==0.4.2
- name: Set up Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: '20'
- name: Install Node dependencies
run: |
npm install -g [email protected] [email protected] [email protected]
Expand Down

0 comments on commit 5255b9a

Please sign in to comment.