Skip to content

Commit

Permalink
ci: bump versions of stuff that is used in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
olegrok committed Apr 30, 2024
1 parent 5380623 commit 8a9e319
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/asan_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Clone the module
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fast_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
tarantool:
- '2.10'
- '2.11'

runs-on: ubuntu-latest
steps:
Expand All @@ -27,12 +27,12 @@ jobs:
with:
tarantool-version: ${{ matrix.tarantool }}

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: '3.10'

- name: Clone the module
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
version-check:
# We need this job to run only on push with tag.
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check module version
uses: tarantool/actions/check-module-version@master
Expand All @@ -19,9 +19,9 @@ jobs:

publish-scm-1:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: tarantool/rocks.tarantool.org/github-action@master
with:
auth: ${{ secrets.ROCKS_AUTH }}
Expand All @@ -30,12 +30,12 @@ jobs:
publish-tag:
if: startsWith(github.ref, 'refs/tags/')
needs: version-check
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: tarantool/setup-tarantool@v1
with:
tarantool-version: '2.10'
tarantool-version: '2.11'
# Make a release
- run: echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV
- run: tarantoolctl rocks new_version --tag ${{ env.TAG }}
Expand Down

0 comments on commit 8a9e319

Please sign in to comment.