Skip to content

Commit

Permalink
Update github action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pepijnve committed Aug 13, 2024
1 parent e619a8f commit 1264a99
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,11 @@ jobs:
ruby: [2.7, 3.3, jruby]
node: [18]
java: [17, 21]
python: ['3.x']
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install Packages
run: |
sudo apt-get update
Expand Down Expand Up @@ -74,7 +75,7 @@ jobs:
texlive-fonts-extra \
git
- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Setup Ruby
Expand All @@ -83,14 +84,14 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Setup Golang
uses: actions/setup-go@v2
uses: actions/setup-go@v5
- name: Setup Go path
run: |
echo "$HOME/go/bin" >> $GITHUB_PATH
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: ${{ matrix.python }}
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 1264a99

Please sign in to comment.