Skip to content

Commit

Permalink
fix(actions): fixes github actions node version warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
lukepeterson committed May 28, 2024
1 parent 6de29a3 commit 7c5eee9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4.1.6

- name: Set up Go
uses: actions/setup-go@v4
- name: Setup Go environment
uses: actions/setup-go@v5.0.1
with:
go-version: '1.22.2'

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v4.1.6

- name: Set up Go
uses: actions/setup-go@v3
- name: Setup Go environment
uses: actions/setup-go@v5.0.1
with:
go-version: '1.22.2'

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This project takes an input string, tokenises the string into a slice of tokens,

[![Tests](https://github.com/lukepeterson/go8080assembler/actions/workflows/go.yml/badge.svg)](https://github.com/lukepeterson/go8080assembler/actions/workflows/go.yml)
![Go Report Card](https://goreportcard.com/badge/github.com/lukepeterson/go8080assembler)
![GitHub release](https://img.shields.io/github/v/release/yourusername/go8080assembler)

# Features

Expand Down

0 comments on commit 7c5eee9

Please sign in to comment.