Skip to content

Commit

Permalink
ci: upgrade actions/setup-go and actions/setup-python
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed May 14, 2024
1 parent dfec238 commit 7faebc7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
uses: actions/checkout@v4

- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Setup Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Install cargo-c
run: cargo install cargo-c

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Test Python - Windows
if: runner.os == 'Windows'
run: |
Expand Down

0 comments on commit 7faebc7

Please sign in to comment.