Skip to content

Commit

Permalink
Update actions (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
yngvar-antonsson authored Apr 19, 2024
1 parent e7463e7 commit a3f395a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/destroy-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
destroy-deployment:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: "${{ secrets.GITHUB_TOKEN }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:

steps:
- name: Clone the module
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Clone the packpack tool
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: packpack/packpack
path: packpack
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-translation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{secrets.PRIVATE_REPO_ACCESS_TOKEN}}

- name: Set branch name from source branch
run: echo "BRANCH_NAME=${GITHUB_REF##*/}" >> $GITHUB_ENV

- name: Setup Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-translation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set branch name from source branch
run: echo "BRANCH_NAME=${GITHUB_HEAD_REF##*/}" >> $GITHUB_ENV
Expand All @@ -24,7 +24,7 @@ jobs:
ref: ${{github.head_ref}}

- name: Setup Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Setup Python requirements
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
cartridge: ""
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: tarantool/setup-tarantool@v2
- uses: tarantool/setup-tarantool@v3
if: matrix.tarantool != '2.x-latest'
with:
tarantool-version: ${{ matrix.tarantool }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
runs-on: ubuntu-20.04
needs: test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: packpack
run: |
Expand All @@ -90,9 +90,9 @@ jobs:
runs-on: ubuntu-20.04
needs: test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: tarantool/setup-tarantool@v2
- uses: tarantool/setup-tarantool@v3
with:
tarantool-version: '2.10'

Expand All @@ -102,7 +102,7 @@ jobs:
sudo apt install -y tt
tt version
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '1.15'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python environment
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand Down

0 comments on commit a3f395a

Please sign in to comment.