0dcb0518be
Update Github actions to their latest versions to fix the following warnings on runs: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions/upload-artifact@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. ``` `actions/checkout` and `actions/cache` are straight Node version upgrades, `actions/upload-artifact` and `actions/download-artifact` have breaking changes, but don't appear to affect our usage. https://github.com/actions/upload-artifact Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
39 lines
926 B
YAML
39 lines
926 B
YAML
# Copyright (c) 2020 Intel Corp.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: Publish commit for daily testing
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '50 22 * * *'
|
|
push:
|
|
branches:
|
|
- refs/tags/*
|
|
|
|
jobs:
|
|
get_version:
|
|
runs-on: ubuntu-22.04
|
|
if: github.repository == 'zephyrproject-rtos/zephyr'
|
|
|
|
steps:
|
|
- name: Configure AWS Credentials
|
|
uses: aws-actions/configure-aws-credentials@v2
|
|
with:
|
|
aws-access-key-id: ${{ vars.AWS_TESTING_ACCESS_KEY_ID }}
|
|
aws-secret-access-key: ${{ secrets.AWS_TESTING_SECRET_ACCESS_KEY }}
|
|
aws-region: us-east-1
|
|
|
|
- name: install-pip
|
|
run: |
|
|
pip3 install gitpython
|
|
|
|
- name: checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Upload to AWS S3
|
|
run: |
|
|
python3 scripts/ci/version_mgr.py --update .
|
|
aws s3 cp versions.json s3://testing.zephyrproject.org/daily_tests/versions.json
|