Skip to content

Commit

Permalink
dev: update CI jobs (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
Betree authored Dec 13, 2024
1 parent b224404 commit b91821a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ contact_links:
- name: Issue Tracker
url: https://github.com/opencollective/opencollective/issues
about: Repository to track issues across all our projects
- name: Slack Channel
url: http://slack.opencollective.com/
- name: Discord Channel
url: https://discord.opencollective.com
about: Engage with the Open Collective community
- name: Documentation
url: https://docs.opencollective.com/help/
about: Documentation for Open Collective
- name: Security Policy
url: https://github.com/opencollective/opencollective/security/policy
about: Please report security vulnerabilities as outlined here
about: Please report security vulnerabilities as outlined here
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# Npm cache

- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -47,7 +47,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
# Npm cache

- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -89,7 +89,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
# Npm cache

- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand All @@ -131,7 +131,7 @@ jobs:
- ${{ runner.os }}-npm-cache-
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v4
id: node-modules
with:
path: node_modules
Expand All @@ -143,7 +143,7 @@ jobs:

- run: npm run depcheck
test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

services:
redis:
Expand All @@ -152,7 +152,7 @@ jobs:
- 6379:6379
options: --entrypoint redis-server
postgres:
image: postgres:13.13
image: postgres:16.6
env:
POSTGRES_USER: postgres
POSTGRES_DB: postgres
Expand All @@ -175,7 +175,7 @@ jobs:
# Npm cache

- name: Restore .npm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-cache-${{ github.sha }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
# Prepare API

- name: Restore node_modules (api)
uses: actions/cache@v3
uses: actions/cache@v4
id: api-node-modules
with:
path: opencollective-api/node_modules
Expand All @@ -223,7 +223,7 @@ jobs:
# Prepare Images

- name: Restore node_modules (images)
uses: actions/cache@v3
uses: actions/cache@v4
id: images-node-modules
with:
path: node_modules
Expand Down

0 comments on commit b91821a

Please sign in to comment.