Update actions/checkout action to v3

This commit is contained in:
Renovate Bot 2022-03-01 20:05:55 +00:00
parent 9f2cbdee85
commit 9e15f0bf65
No known key found for this signature in database
GPG key ID: 81C63AE1C224182B
6 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@ jobs:
steps: steps:
- name: Install build tools - name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Cache - name: Cache
uses: actions/cache@v2.1.7 uses: actions/cache@v2.1.7
with: with:

View file

@ -21,7 +21,7 @@ jobs:
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
- name: Install build tools - name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi libelf-dev zip -y
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Cache - name: Cache
uses: actions/cache@v2.1.7 uses: actions/cache@v2.1.7
with: with:

View file

@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- name: Check out repository - name: Check out repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Check if gba.ld files are identical - name: Check if gba.ld files are identical
run: find -type f -name gba.ld -print0 | xargs -0 -n1 cmp -- agb/gba.ld run: find -type f -name gba.ld -print0 | xargs -0 -n1 cmp -- agb/gba.ld
- name: Check if gba_mb.ld files are identical - name: Check if gba_mb.ld files are identical

View file

@ -13,7 +13,7 @@ jobs:
- name: Install build tools - name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi zip -y run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi zip -y
- name: Check out repository - name: Check out repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Login to crates.io - name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }} run: cargo login ${{ secrets.CRATE_API }}
- name: Publish agb - name: Publish agb

View file

@ -12,7 +12,7 @@ jobs:
- name: Install build tools - name: Install build tools
run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y run: sudo apt-get update && sudo apt-get install build-essential binutils-arm-none-eabi -y
- name: Check out repository - name: Check out repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Login to crates.io - name: Login to crates.io
run: cargo login ${{ secrets.CRATE_API }} run: cargo login ${{ secrets.CRATE_API }}
- name: Publish crate - name: Publish crate

View file

@ -16,7 +16,7 @@ jobs:
- name: Set CARGO_TARGET_DIR - name: Set CARGO_TARGET_DIR
run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV run: echo "CARGO_TARGET_DIR=$HOME/target" >> $GITHUB_ENV
- name: Check out repository - name: Check out repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- uses: extractions/setup-just@v1 - uses: extractions/setup-just@v1
- name: Update lock files - name: Update lock files
run: just update-lockfiles run: just update-lockfiles